From b35457bb531d3bed0f66d1aea290cb45b823d515 Mon Sep 17 00:00:00 2001 From: James Ritchie Date: Thu, 13 Jul 2023 18:05:16 +0100 Subject: [PATCH] export type and fixed typo --- apps/webapp/app/routes/resources.feedback.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/webapp/app/routes/resources.feedback.ts b/apps/webapp/app/routes/resources.feedback.ts index 75d094900..2e48511c4 100644 --- a/apps/webapp/app/routes/resources.feedback.ts +++ b/apps/webapp/app/routes/resources.feedback.ts @@ -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)