diff --git a/apps/console/app/routes/apps/$clientId.tsx b/apps/console/app/routes/apps/$clientId.tsx
index 4694a96ff1..5eebc11366 100644
--- a/apps/console/app/routes/apps/$clientId.tsx
+++ b/apps/console/app/routes/apps/$clientId.tsx
@@ -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`,
+ })
}
}
)
@@ -146,13 +147,14 @@ export default function AppDetailIndexPage() {