fix: build error (#6638)
This commit is contained in:
parent
51c2ea6fcb
commit
cd3fa94b9c
1 changed files with 2 additions and 2 deletions
|
|
@ -10,12 +10,12 @@ import { useCommandPalette, useIssueDetail, useUser } from "@/hooks/store";
|
|||
import { useAppRouter } from "@/hooks/use-app-router";
|
||||
import { useIssuesStore } from "@/hooks/use-issue-layout-store";
|
||||
|
||||
type Props = {
|
||||
export type TIssueLevelModalsProps = {
|
||||
projectId: string | undefined;
|
||||
issueId: string | undefined;
|
||||
};
|
||||
|
||||
export const IssueLevelModals: FC<Props> = observer((props) => {
|
||||
export const IssueLevelModals: FC<TIssueLevelModalsProps> = observer((props) => {
|
||||
const { projectId, issueId } = props;
|
||||
// router
|
||||
const pathname = usePathname();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue