Skip to content

Commit

Permalink
Fix a mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
Thunnini committed Aug 3, 2023
1 parent 261ac85 commit d59cd11
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions packages/extension/src/pages/blocklist/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { URLTempAllowMsg } from "@keplr-wallet/background";
import { Box } from "../../components/box";
import styled from "styled-components";
import { ColorPalette, GlobalStyle } from "../../styles";
import { AppThemeProvider } from "../../theme";

const Styles = {
Inner: styled.div`
Expand Down Expand Up @@ -100,8 +101,10 @@ export const BlocklistPage: FunctionComponent = () => {

ReactDOM.render(
<React.Fragment>
<GlobalStyle />
<BlocklistPage />
<AppThemeProvider>
<GlobalStyle />
<BlocklistPage />
</AppThemeProvider>
</React.Fragment>,
document.getElementById("app")
);

0 comments on commit d59cd11

Please sign in to comment.