Skip to content

Commit

Permalink
chore(public): remove unused error from channel settings query
Browse files Browse the repository at this point in the history
  • Loading branch information
Satont committed Aug 30, 2023
1 parent 9a36bc6 commit 2457e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/public-page/src/pages/TTSSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const channelId = computed<string>(() => {
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) ?? []);
Expand Down

0 comments on commit 2457e48

Please sign in to comment.