Skip to content

Commit

Permalink
Fix imports for the DarkTheme
Browse files Browse the repository at this point in the history
version change
  • Loading branch information
GeorgeV220 committed Jun 27, 2022
1 parent 3c85c11 commit c9414ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "champ-r",
"version": "1.2.2",
"version": "1.3.0",
"license": "MIT",
"description": "Get champion builds & runes for lol.",
"productName": "ChampR",
Expand Down
2 changes: 1 addition & 1 deletion src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import Toolbar from 'src/components/toolbar';
import Home from 'src/modules/home';
import Import from 'src/modules/import';
import Settings from 'src/modules/settings';
import { darkTheme } from './DarkTheme';
import { darkTheme } from 'src/modules/theme/DarkTheme';

const engine = new Styletron();

Expand Down
2 changes: 1 addition & 1 deletion src/modules/popup/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Provider as StyletronProvider } from 'styletron-react';
import { LightTheme, BaseProvider } from 'baseui';
import initI18n from 'src/modules/i18n';
import { Content } from './content';
import { darkTheme } from 'src/DarkTheme';
import { darkTheme } from 'src/modules/theme/DarkTheme';

initI18n();
const engine = new Styletron();
Expand Down

0 comments on commit c9414ac

Please sign in to comment.