Skip to content

Commit

Permalink
Center text
Browse files Browse the repository at this point in the history
  • Loading branch information
mlejva committed Nov 24, 2024
1 parent c3d5bda commit 457c2ca
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 457c2ca

Please sign in to comment.