Skip to content
This repository was archived by the owner on Nov 7, 2025. It is now read-only.

Commit 06ffb60

Browse files
committed
chore: remove unused props
1 parent 659cc65 commit 06ffb60

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

src/pages/apps/[id]/environments/[env-id]/config/_components/TabAPIKey.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const { useFetchAPIKeys, generateNewAPIKey, deleteAPIKey } = actions;
2121
interface Props {
2222
app: App;
2323
environment: Environment;
24-
setRefreshToken?: (v: number) => void; // This is there just to accomodate the Tab signature. It's not really used.
2524
}
2625

2726
export default function TabAPIKey({ app, environment: env }: Props) {

src/pages/apps/[id]/environments/[env-id]/config/_components/TabDomainConfig/TabDomainConfig.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import { formattedDate } from "~/utils/helpers/deployments";
2727
interface Props {
2828
app: App;
2929
environment: Environment;
30-
setRefreshToken: (val: number) => void;
3130
}
3231

3332
export default function TabDomainConfig({ app, environment }: Props) {

src/pages/apps/[id]/environments/[env-id]/config/_components/TabMailer.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import { useFetchMailerConfig } from "../actions";
1111
interface Props {
1212
app: App;
1313
environment: Environment;
14-
setRefreshToken?: (v: number) => void; // This is there just to accomodate the Tab signature. It's not really used.
1514
}
1615

1716
export default function TabMailer({ app, environment: env }: Props) {

0 commit comments

Comments
 (0)