feature/IO-3492-FCM-Queue-For-Notifications: Finalize

This commit is contained in:
Dave
2026-01-05 18:42:40 -05:00
parent 4cdc15f70b
commit 00bf5977ae
5 changed files with 170 additions and 35 deletions

View File

@@ -155,8 +155,12 @@ const NotificationSettingsForm = ({ currentUser, bodyshop }) => {
<Checkbox />
</Form.Item>
)
},
{
}
];
// Currently disabled for prod
if (!import.meta.env.PROD) {
columns.push({
title: <ColumnHeaderCheckbox channel="fcm" form={form} onHeaderChange={() => setIsDirty(true)} />,
dataIndex: "fcm",
key: "fcm",
@@ -166,8 +170,8 @@ const NotificationSettingsForm = ({ currentUser, bodyshop }) => {
<Checkbox />
</Form.Item>
)
}
];
});
}
const dataSource = notificationScenarios.map((scenario) => ({ key: scenario }));