This commit is contained in:
jeffvli
2023-10-26 11:47:25 -07:00
parent eb5ad541d9
commit 3a13301e23
2 changed files with 4 additions and 2 deletions
@@ -183,6 +183,6 @@ export const openUpdatePlaylistModal = async (args: {
onCancel={closeAllModals} onCancel={closeAllModals}
/> />
), ),
title: i18n.t('form.editPlaylist', { postProcess: 'titleCase' }) as string, title: i18n.t('form.editPlaylist.title', { postProcess: 'titleCase' }) as string,
}); });
}; };
@@ -72,7 +72,9 @@ export const HomeCommands = ({
}) })
: `${t('common.search', { postProcess: 'sentenceCase' })}...`} : `${t('common.search', { postProcess: 'sentenceCase' })}...`}
</Command.Item> </Command.Item>
<Command.Item onSelect={handleCreatePlaylistModal}>{t('')}...</Command.Item> <Command.Item onSelect={handleCreatePlaylistModal}>
{t('action.createPlaylist', { postProcess: 'sentenceCase' })}...
</Command.Item>
<Command.Item onSelect={() => setPages([...pages, CommandPalettePages.GO_TO])}> <Command.Item onSelect={() => setPages([...pages, CommandPalettePages.GO_TO])}>
{t('page.globalSearch.commands.goToPage', { postProcess: 'sentenceCase' })}... {t('page.globalSearch.commands.goToPage', { postProcess: 'sentenceCase' })}...
</Command.Item> </Command.Item>