We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b49a477 commit 18d30b3Copy full SHA for 18d30b3
frontend/src/routes/_account.plan.index.tsx
@@ -25,11 +25,11 @@ export const query = queryOptions({
25
26
export const Route = createFileRoute("/_account/plan/")({
27
loader: async ({ context }) => {
28
- const { siteConfig: { planManagementIframeUri } } =
29
- await context.queryClient.ensureQueryData(query);
+ const {
+ siteConfig: { planManagementIframeUri },
30
+ } = await context.queryClient.ensureQueryData(query);
31
- if (!planManagementIframeUri)
32
- throw redirect({ to: "/", replace: true });
+ if (!planManagementIframeUri) throw redirect({ to: "/", replace: true });
33
34
preload(planManagementIframeUri, { as: "document" });
35
},
0 commit comments