refactor: remove redundant spread fallbacks

This commit is contained in:
Peter Steinberger
2026-01-13 07:29:18 +00:00
parent 3eb48cbea7
commit fcac2464e6
4 changed files with 4 additions and 7 deletions

View File

@@ -620,7 +620,7 @@ async function removeChannelConfigWizard(
);
if (!confirmed) continue;
const nextChannels: Record<string, unknown> = { ...(next.channels ?? {}) };
const nextChannels: Record<string, unknown> = { ...next.channels };
delete nextChannels[channel];
next = {
...next,