Fix type imports

This commit is contained in:
Owen
2026-04-21 22:17:49 -07:00
parent 0c6acfe282
commit 9474792e14
12 changed files with 109 additions and 120 deletions

View File

@@ -12,7 +12,7 @@ import { useParams, useRouter } from "next/navigation";
import { useTranslations } from "next-intl";
import { useEffect, useState } from "react";
import type { AxiosResponse } from "axios";
import type { GetAlertRuleResponse } from "@server/private/routers/alertRule";
import type { GetAlertRuleResponse } from "@server/routers/alertRule/types";
import type { AlertRuleFormValues } from "@app/lib/alertRuleForm";
export default function EditAlertRulePage() {