Skip to content

Commit 99849d9

Browse files
prateekshourya29lifeiscontent
authored andcommitted
fix: build error (#6638)
1 parent 544a300 commit 99849d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/ce/components/command-palette/modals/issue-level.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ import { useCommandPalette, useIssueDetail, useUser } from "@/hooks/store";
1010
import { useAppRouter } from "@/hooks/use-app-router";
1111
import { useIssuesStore } from "@/hooks/use-issue-layout-store";
1212

13-
type Props = {
13+
export type TIssueLevelModalsProps = {
1414
projectId: string | undefined;
1515
issueId: string | undefined;
1616
};
1717

18-
export const IssueLevelModals: FC<Props> = observer((props) => {
18+
export const IssueLevelModals: FC<TIssueLevelModalsProps> = observer((props) => {
1919
const { projectId, issueId } = props;
2020
// router
2121
const pathname = usePathname();

0 commit comments

Comments
 (0)