Skip to content

Commit

Permalink
fix: add max-w to page div (#1424)
Browse files Browse the repository at this point in the history
Co-authored-by: shaikzeeshan <[email protected] undefined>
  • Loading branch information
shaik-zeeshan and shaikzeeshan authored Feb 20, 2025
1 parent 038091b commit a6b459b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions screenpipe-app-tauri/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export default function Home() {
const pipeApi = new PipeApi();
console.log("audio-devices", devices);
await Promise.all(
devices.map((device) => pipeApi.startAudio(device))
devices.map((device) => pipeApi.startAudio(device)),
);
toast({
title: "audio started",
Expand Down Expand Up @@ -206,7 +206,7 @@ export default function Home() {
useEffect(() => {
const checkScreenPermissionRestart = async () => {
const restartPending = await localforage.getItem(
"screenPermissionRestartPending"
"screenPermissionRestartPending",
);
if (restartPending) {
setShowOnboarding(true);
Expand All @@ -228,7 +228,7 @@ export default function Home() {
}, []);

return (
<div className="flex flex-col items-center flex-1">
<div className="flex flex-col items-center flex-1 max-w-screen-2xl mx-auto relative">
<NotificationHandler />
{showOnboarding ? (
<Onboarding />
Expand All @@ -237,7 +237,7 @@ export default function Home() {
<ChangelogDialog />
<BreakingChangesInstructionsDialog />
<Header />
<div className=" w-[90%]">
<div className=" w-full">
<PipeStore />
</div>
</>
Expand Down

0 comments on commit a6b459b

Please sign in to comment.