Skip to content

Commit

Permalink
fix: remove 'prose' as proper category (and thus also from menu)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinstadler committed Oct 8, 2024
1 parent 1c9e6d6 commit 8f5b7c6
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions lib/model.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
// these end up in public URLs as slugs, so come up with good names!
export const otherCategories = [
"prose",
"drama",
"poetry",
"letterspeechinterview",
"adaptations",
] as const;
export const otherCategories = ["drama", "poetry", "letterspeechinterview", "adaptations"] as const;
export const proseCategories = ["novels", "novellas", "autobiography", "fragments"] as const;

export type Category = (typeof otherCategories)[number] | (typeof proseCategories)[number];
Expand Down

0 comments on commit 8f5b7c6

Please sign in to comment.