From 5f194e0b3460d48d0c27080116a816eb169a1a10 Mon Sep 17 00:00:00 2001 From: jaem1n207 Date: Thu, 16 May 2024 00:25:52 +0900 Subject: [PATCH] chore: rename sidebar, popup --- src/popup/main.tsx | 2 +- src/sidebar/main.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/popup/main.tsx b/src/popup/main.tsx index 5c35ac3..4d87502 100644 --- a/src/popup/main.tsx +++ b/src/popup/main.tsx @@ -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!); diff --git a/src/sidebar/main.tsx b/src/sidebar/main.tsx index 64e0554..c69d277 100644 --- a/src/sidebar/main.tsx +++ b/src/sidebar/main.tsx @@ -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!);