diff --git a/frontend/public-page/src/pages/TTSSettings.vue b/frontend/public-page/src/pages/TTSSettings.vue index 6ff0a1b50..84b00c76f 100644 --- a/frontend/public-page/src/pages/TTSSettings.vue +++ b/frontend/public-page/src/pages/TTSSettings.vue @@ -25,7 +25,7 @@ const channelId = computed(() => { return profile.value.id; }); -const { data: channelSettings, isError: isChannelError } = useTTSChannelSettings(channelId); +const { data: channelSettings } = useTTSChannelSettings(channelId); const { data: usersSettings } = useTTSUsersSettings(channelId); const usersIds = computed(() => usersSettings.value?.settings.map(s => s.userId) ?? []);