Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pfrazee committed Mar 9, 2024
1 parent 091b5c5 commit 6bbd861
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api/scripts/code/labels.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ writeFileSync(
async function gen() {
return prettier.format(
`/** this doc is generated by ./scripts/code/labels.mjs **/
import {InterprettedLabelValueDefinition, LabelPreference} from '../types'
import {InterpretedLabelValueDefinition, LabelPreference} from '../types'
export type KnownLabelValue = ${labelsDef
.map((label) => `"${label.identifier}"`)
Expand All @@ -35,7 +35,7 @@ async function gen() {
),
)}
export const LABELS: Record<KnownLabelValue, InterprettedLabelValueDefinition> = ${JSON.stringify(
export const LABELS: Record<KnownLabelValue, InterpretedLabelValueDefinition> = ${JSON.stringify(
Object.fromEntries(
labelsDef.map((label) => [label.identifier, { ...label, locales: [] }]),
),
Expand Down

0 comments on commit 6bbd861

Please sign in to comment.