Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MrBaptastic committed Oct 12, 2023
1 parent 689f0f0 commit ffcd1f7
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,13 @@ type TextDirection = "ltr" | "rtl"

type SurveyStatus = {
text: string
status: "draft" | "live" | "scheduled" | "closed" | "default" | "sentimentPositive"
status:
| "draft"
| "live"
| "scheduled"
| "closed"
| "sentimentPositive"
| "default"
}

const renderTag = (surveyStatus: SurveyStatus): JSX.Element | void => {
Expand Down

0 comments on commit ffcd1f7

Please sign in to comment.