Skip to content

Commit

Permalink
fix: imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeday committed Mar 1, 2024
1 parent c859ba9 commit b7d1f6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion features/ipfs/update-promt-banner/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { UpgradePromtBanner as OutdatedHashBanner } from './update-promt-banner';
export { UpgradePromtBanner } from './update-promt-banner';
4 changes: 2 additions & 2 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { Providers } from 'providers';
import { BackgroundGradient } from 'shared/components/background-gradient/background-gradient';
import { nprogress, COOKIES_ALLOWED_FULL_KEY } from 'utils';
import { withCsp } from 'utilsApi/withCSP';
import { OutdatedHashBanner } from 'features/ipfs/outdated-hash-banner';
import { UpgradePromtBanner } from 'features/ipfs/update-promt-banner';

// Migrations old theme cookies to new cross domain cookies
migrationThemeCookiesToCrossDomainCookiesClientSide();
Expand Down Expand Up @@ -56,7 +56,7 @@ const AppWrapper = (props: AppProps): JSX.Element => {
<ToastContainer />
<MemoApp {...rest} />
<CookiesTooltip />
<OutdatedHashBanner />
<UpgradePromtBanner />
</Providers>
);
};
Expand Down

0 comments on commit b7d1f6a

Please sign in to comment.