Skip to content

Commit dbd3c8e

Browse files
committed
fix: allow generated types to be exported.
1 parent e3657ac commit dbd3c8e

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

refact-agent/gui/src/events/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import type { TourState } from "../features/Tour";
1010
import type { FIMDebugState } from "../hooks";
1111
import { CurrentProjectInfo } from "../features/Chat/currentProject";
1212
import { TeamsSliceState } from "../features/Teams";
13-
import type { MessagesInitialState } from "../features/ThreadMessages";
1413

1514
export { updateConfig, type Config } from "../features/Config/configSlice";
1615
export { type FileInfo, setFileInfo } from "../features/Chat/activeFile";
@@ -53,7 +52,6 @@ export type InitialState = {
5352
error: ErrorSliceState;
5453
pages: PageSliceState;
5554
current_project: CurrentProjectInfo;
56-
threadMessages: MessagesInitialState;
5755
};
5856

5957
export {

refact-agent/gui/src/hooks/useSmartLinks.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { useCallback } from "react";
22

33
import { LspChatMessage } from "../services/refact/chat";
4-
import { formatMessagesForChat } from "../features/Chat/Thread/utils";
54
import { useAppDispatch } from "./useAppDispatch";
65
import { clearInformation } from "../features/Errors/informationSlice";
76

refact-agent/gui/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"noFallthroughCasesInSwitch": true,
2222
"plugins": [{ "name": "typescript-plugin-css-modules" }]
2323
},
24-
"include": ["src", "codegen.ts", "urqlClient.tsx"],
24+
"include": ["src", "codegen.ts", "generated"],
2525
"references": [{ "path": "./tsconfig.node.json" }],
2626
"plugins": [
2727
{

0 commit comments

Comments
 (0)