Fix frontend build errors with imports

Co-authored-by: Ospab <189454929+Ospab@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-12 07:33:07 +00:00
parent d70d999b7d
commit 1a90aed682
2 changed files with 2 additions and 2 deletions

View File

@@ -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(
<StrictMode>

View File

@@ -1,4 +1,4 @@
import React, { useState } from "react";
import { useState } from "react";
const Settings = () => {
const [tab, setTab] = useState<'email' | 'password'>('email');