Skip to content

Commit 2b3e805

Browse files
committed
Fix modal loader issues
1 parent 15193bc commit 2b3e805

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/scripts/options/managecreators.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,5 @@ export const showManageCreators = withLoader(async () => {
6969
if (nameA > nameB) return 1;
7070
return 0;
7171
}).map(c => buildCreator(creatorSettings, c));
72-
await buildModal(msg('optionsManageHiddenCreators'), msg('optionsManageHiddenCreatorsNone'), 'manage-hidden', ...c);
72+
buildModal(msg('optionsManageHiddenCreators'), msg('optionsManageHiddenCreatorsNone'), 'manage-hidden', ...c);
7373
});

src/scripts/options/player.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,5 @@ const render = (settings: Partial<Settings>, selected: Comp = undefined) => {
145145

146146
export const showConfigurePlayers = withLoader(async () => {
147147
const { playerSettings } = await getFromStorage<{ playerSettings: Partial<Settings>; }>({ playerSettings: {} });
148-
await buildModal(msg('optionsPlayerConfigure'), '', 'configure-player', render(playerSettings));
148+
buildModal(msg('optionsPlayerConfigure'), '', 'configure-player', render(playerSettings));
149149
});

0 commit comments

Comments
 (0)