Skip to content

Commit

Permalink
Merge pull request #16 from Swarthmore/use-semicolon-delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
devnoot authored Nov 18, 2024
2 parents 73addec + 17f47aa commit 6f6ae48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ export const App = () => {

const generatedHead = getCodeOutput(headTemplate, {
accessibilityFeatures: accessibilityFeatures
? accessibilityFeatures.join(',')
? accessibilityFeatures.join(';')
: '', // mustache will discard the field if we give it an empty string
accessibilityHazards: accessibilityHazards
? accessibilityHazards.join(',')
? accessibilityHazards.join(';')
: '',
...rest
})
Expand Down

0 comments on commit 6f6ae48

Please sign in to comment.