Skip to content

Commit

Permalink
1500: Run prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben van Leeuwen authored and DutchBen committed Nov 5, 2024
1 parent f907872 commit eac7fd1
Showing 1 changed file with 37 additions and 46 deletions.
83 changes: 37 additions & 46 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,53 +85,44 @@ function CustomApp({
>
<StoreProvider initialOrchestratorConfig={orchestratorConfig}>
<SessionProvider session={pageProps.session}>
<WfoAuth>
<EuiProvider
colorMode={themeMode}
modify={defaultOrchestratorTheme}
>
<TranslationsProvider>
<Head>
<link
rel="icon"
href="/favicon.png"
/>
<title>
Welcome to
example-orchestrator-ui!
</title>
</Head>
<main className="app">
<ConfirmationDialogContextWrapper>
<WfoPageTemplate
getAppLogo={getAppLogo}
onThemeSwitch={
handleThemeSwitch
}
overrideMenuItems={
addMenuItems
}
<WfoAuth>
<EuiProvider
colorMode={themeMode}
modify={defaultOrchestratorTheme}
>
<TranslationsProvider>
<Head>
<link rel="icon" href="/favicon.png" />
<title>
Welcome to example-orchestrator-ui!
</title>
</Head>
<main className="app">
<ConfirmationDialogContextWrapper>
<WfoPageTemplate
getAppLogo={getAppLogo}
onThemeSwitch={
handleThemeSwitch
}
overrideMenuItems={addMenuItems}
>
<QueryParamProvider
adapter={NextAdapter}
options={{
removeDefaultsFromUrl:
false,
enableBatching: true,
}}
>
<QueryParamProvider
adapter={NextAdapter}
options={{
removeDefaultsFromUrl:
false,
enableBatching:
true,
}}
>
<Component
{...pageProps}
/>
</QueryParamProvider>
</WfoPageTemplate>
<WfoToastsList />
</ConfirmationDialogContextWrapper>
</main>
</TranslationsProvider>
</EuiProvider>
</WfoAuth>
<Component {...pageProps} />
</QueryParamProvider>
</WfoPageTemplate>
<WfoToastsList />
</ConfirmationDialogContextWrapper>
</main>
</TranslationsProvider>
</EuiProvider>
</WfoAuth>
</SessionProvider>
</StoreProvider>
</OrchestratorConfigProvider>
Expand Down

0 comments on commit eac7fd1

Please sign in to comment.