mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-23 16:53:50 +02:00
eslint fix
This commit is contained in:
@@ -405,7 +405,10 @@ export const useAppearanceSettingsStore = defineStore(
|
||||
});
|
||||
}
|
||||
if (randomUserColours.value) {
|
||||
const colour = await getNameColour(userStore.currentUser.id, isDarkMode.value);
|
||||
const colour = await getNameColour(
|
||||
userStore.currentUser.id,
|
||||
isDarkMode.value
|
||||
);
|
||||
userStore.setCurrentUserColour(colour);
|
||||
userColourInit();
|
||||
} else {
|
||||
@@ -1042,7 +1045,10 @@ export const useAppearanceSettingsStore = defineStore(
|
||||
if (!randomUserColours.value) {
|
||||
return;
|
||||
}
|
||||
const colour = await getNameColour(userStore.currentUser.id, isDarkMode.value);
|
||||
const colour = await getNameColour(
|
||||
userStore.currentUser.id,
|
||||
isDarkMode.value
|
||||
);
|
||||
userStore.setCurrentUserColour(colour);
|
||||
await userColourInit();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user