export type and fixed typo

This commit is contained in:
James Ritchie
2023-07-13 18:05:16 +01:00
parent 1ea0d39fa2
commit b35457bb53
+2 -2
View File
@@ -19,10 +19,10 @@ export const feedbackTypeLabel = {
bug: "Bug report",
feature: "Feature request",
help: "Help me out",
integration: "Request an integration",
integration: "Request an Integration",
};
type FeedbackType = keyof typeof feedbackTypeLabel;
export type FeedbackType = keyof typeof feedbackTypeLabel;
const feedbackTypeLiterals = Object.keys(feedbackTypeLabel).map((key) =>
z.literal(key)