Skip to content

Commit 3a015be

Browse files
fix: restore imports lost during merge in App.tsx
The merge of origin/dev into PSL-US-33784 incorrectly resolved the import block in App.tsx, dropping: - closing brace and source for @fluentui/react-components - SparkleRegular import from @fluentui/react-icons - App.css stylesheet import - ChatHistoryPanel component import This caused the Docker build-and-push CI job to fail with: SyntaxError: Unexpected keyword 'import'. (11:0) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a801e39 commit 3a015be

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/App/src/App.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ import {
88
FluentProvider,
99
Subtitle2,
1010
webLightTheme,
11+
} from "@fluentui/react-components";
12+
import { SparkleRegular } from "@fluentui/react-icons";
13+
import "./App.css";
14+
import { ChatHistoryPanel } from "./components/ChatHistoryPanel/ChatHistoryPanel";
1115
import { getUserInfo } from "./api/api";
1216
import { useAppDispatch, useAppSelector } from "./state/hooks";
1317
import {

0 commit comments

Comments
 (0)