refactor(certificate): remove auto-renew field from certificate handling

- Eliminated the `autoRenew` field from the certificate schema, API router, and related components to streamline certificate management.
- Updated form handling and validation logic accordingly to reflect the removal of the auto-renew feature.
This commit is contained in:
Mauricio Siu
2026-04-03 23:00:27 -06:00
parent 092212e225
commit 92caee5a77
4 changed files with 0 additions and 25 deletions

View File

@@ -90,7 +90,6 @@ export const certificateRouter = createTRPCRouter({
name: input.name,
certificateData: input.certificateData,
privateKey: input.privateKey,
autoRenew: input.autoRenew,
});
}),
});