From 1a90aed6828a2eb667c52b2a9a8c3d6e18681f74 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 12 Oct 2025 07:33:07 +0000 Subject: [PATCH] Fix frontend build errors with imports Co-authored-by: Ospab <189454929+Ospab@users.noreply.github.com> --- ospabhost/frontend/src/main.tsx | 2 +- ospabhost/frontend/src/pages/dashboard/settings.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ospabhost/frontend/src/main.tsx b/ospabhost/frontend/src/main.tsx index 475dce2..bef5202 100644 --- a/ospabhost/frontend/src/main.tsx +++ b/ospabhost/frontend/src/main.tsx @@ -1,7 +1,7 @@ import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import './index.css' -import App from './app.tsx' +import App from './App.tsx' createRoot(document.getElementById('root')!).render( diff --git a/ospabhost/frontend/src/pages/dashboard/settings.tsx b/ospabhost/frontend/src/pages/dashboard/settings.tsx index 603deff..139423b 100644 --- a/ospabhost/frontend/src/pages/dashboard/settings.tsx +++ b/ospabhost/frontend/src/pages/dashboard/settings.tsx @@ -1,4 +1,4 @@ -import React, { useState } from "react"; +import { useState } from "react"; const Settings = () => { const [tab, setTab] = useState<'email' | 'password'>('email');