Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function RootLayout({
<meta name="theme-color" content="#000000" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body className="bg-black monospace">
<body className="bg-black h-screen w-screen monospace">
<AppStateProvider>{children}</AppStateProvider>
</body>
</html>
Expand Down
2 changes: 1 addition & 1 deletion src/components/LoadSequence.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function LoadSequence() {
{ message: '> Detecting user locale...', delay: 800 }, // Start after static HTML finishes
{ message: `> Selecting proper locale [${detectedLocale}]`, delay: 200 },
{
message: `> Loading application chunks for /${detectedLocale}`,
message: `> Loading chunks for /${detectedLocale}`,
delay: 200,
},
],
Expand Down