[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEAT]: use RSCs in @dub/ui Fixes #572

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
small fixes
  • Loading branch information
steven-tey committed Jan 30, 2024
commit e825fe8971643c936a90f32928c979cffe42072f
4 changes: 2 additions & 2 deletions apps/web/app/app.dub.co/(auth)/welcome/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export default function WelcomePage() {
return (
<div className="flex h-screen flex-col items-center">
<Background />
<Suspense fallback={<div/>}>
<WelcomePageClient />
<Suspense fallback={null}>
<WelcomePageClient />
</Suspense>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"clean": "turbo clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"publish-tw": "turbo build --filter='@dub/tailwind-config' && cd packages/tailwind-config && npm publish && cd ../../",
"publish-ui": "cd packages/ui && npm publish && cd ../../",
"publish-ui": "turbo build --filter='@dub/ui' && cd packages/ui && npm publish && cd ../../",
"publish-utils": "turbo build --filter='@dub/utils' && cd packages/utils && npm publish && cd ../../",
"script": "echo 'Run this script in apps/web'"
},
Expand Down