Skip to content

Commit

Permalink
P&F
Browse files Browse the repository at this point in the history
  • Loading branch information
Cosmin-Parvulescu committed May 31, 2023
1 parent 001e9c9 commit 6416414
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions apps/console/app/routes/apps/$clientId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,10 @@ export const loader: LoaderFunction = getRollupReqFunctionErrorWrapper(
console.error('Caught error in loader', { error })
if (error instanceof Response) {
throw error
} else throw new NotFoundError({
message: `Request received for clientId ${clientId} which is not owned by provided account`
})
} else
throw new NotFoundError({
message: `Request received for clientId ${clientId} which is not owned by provided account`,
})
}
}
)
Expand Down Expand Up @@ -146,13 +147,14 @@ export default function AppDetailIndexPage() {
<Toaster position="top-right" reverseOrder={false} />

<section
className={`${open
? 'max-lg:opacity-50\
className={`${
open
? 'max-lg:opacity-50\
max-lg:overflow-hidden\
max-lg:h-[calc(100dvh-80px)]\
min-h-[636px]'
: 'h-full '
} py-9 sm:mx-11 max-w-[1636px]`}
: 'h-full '
} py-9 sm:mx-11 max-w-[1636px]`}
>
<Outlet
context={{
Expand Down

0 comments on commit 6416414

Please sign in to comment.