Skip to content

Commit

Permalink
chore: rename sidebar, popup
Browse files Browse the repository at this point in the history
  • Loading branch information
jaem1n207 committed May 15, 2024
1 parent ca2a222 commit 5f194e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/popup/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';

import '../shared/styles';
import App from './Popup';
import App from './popup';

const container = document.getElementById('app');
const root = createRoot(container!);
Expand Down
2 changes: 1 addition & 1 deletion src/sidebar/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { createRoot } from 'react-dom/client';

import '~/shared/styles';
import App from './Sidebar';
import App from './sidebar';

const container = document.getElementById('app');
const root = createRoot(container!);
Expand Down

0 comments on commit 5f194e0

Please sign in to comment.