From 29b0ca5bf582f143a31e04f8b291b3a2210f43fa Mon Sep 17 00:00:00 2001 From: Charles GTE Date: Sun, 15 Mar 2026 12:05:48 +0100 Subject: [PATCH] fix: 'Semicolon insertion' Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com> --- .../wrappers/dashboard/database/channels-policy/policy-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/wrappers/dashboard/database/channels-policy/policy-form.tsx b/src/components/wrappers/dashboard/database/channels-policy/policy-form.tsx index f5247c0c..f2da6250 100644 --- a/src/components/wrappers/dashboard/database/channels-policy/policy-form.tsx +++ b/src/components/wrappers/dashboard/database/channels-policy/policy-form.tsx @@ -55,7 +55,7 @@ export const ChannelPoliciesForm = ({ const isMobile = useIsMobile(); const channelText = getChannelTextBasedOnKind(kind); - const isBackupOnly = backupOnly.some((type) => database.dbms === type) + const isBackupOnly = backupOnly.some((type) => database.dbms === type); const organizationChannels = channels.map(c => c.id);