Skip to content

Commit

Permalink
Merge pull request #7108 from StoDevX/drew/menu-filter-toolbar-nicety
Browse files Browse the repository at this point in the history
Remove period after full month name in menu filter toolbar
  • Loading branch information
drewvolz committed May 10, 2024
2 parents dcc5418 + ecf7734 commit c58e0fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/food-menu/filter-menu-toolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export function FilterMenuToolbar<T extends object>({
<>
<Toolbar>
<View style={[styles.toolbarSection, styles.today]}>
<Text style={styles.toolbarText}>{date.format('MMM. Do')}</Text>
<Text style={styles.toolbarText}>{date.format('MMM Do')}</Text>
{title ? <Text style={styles.toolbarText}>{title}</Text> : null}
</View>
{mealFilter && multipleMeals ? (
Expand Down

0 comments on commit c58e0fe

Please sign in to comment.