Skip to content

Commit

Permalink
Center text (#480)
Browse files Browse the repository at this point in the history
Centers text on screen
  • Loading branch information
mlejva authored Nov 24, 2024
2 parents 54e8c7f + 457c2ca commit 3631f8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/app/stream/sandbox/[sandboxId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ export default async function StreamPage({
const token = searchParams.token

if (!token) {
return <div>Missing token</div>
return <div className="h-full w-full flex items-center justify-center">Missing token</div>
}

const stream = await fetchStream(params.sandboxId, token)

if (!stream) {
return <div>Stream not found</div>
return <div className="h-full w-full flex items-center justify-center">Sandbox video stream not found</div>
}

return (
Expand Down

0 comments on commit 3631f8b

Please sign in to comment.