Skip to content

Commit

Permalink
Show the salesforce-d2c icon on the data sources page (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
ingeniumed authored Feb 25, 2025
1 parent d5260cf commit dfc8408
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/data-sources/DataSourceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,17 @@ import { BaseModal } from '@/blocks/remote-data-container/components/modals/Base
import { useModalState } from '@/blocks/remote-data-container/hooks/useModalState';
import DataSourceMetaTags from '@/data-sources/DataSourceMetaTags';
import {
ConfigSource,
SUPPORTED_SERVICES,
SUPPORTED_SERVICES_LABELS,
ConfigSource,
} from '@/data-sources/constants';
import { useDataSources } from '@/data-sources/hooks/useDataSources';
import { DataSourceConfig } from '@/data-sources/types';
import { useSettingsContext } from '@/settings/hooks/useSettingsNav';
import { AirtableIcon } from '@/settings/icons/AirtableIcon';
import { GoogleSheetsIcon } from '@/settings/icons/GoogleSheetsIcon';
import HttpIcon from '@/settings/icons/HttpIcon';
import SalesforceCommerceD2CIcon from '@/settings/icons/SalesforceCommerceD2CIcon';
import { ShopifyIcon } from '@/settings/icons/ShopifyIcon';

import './DataSourceList.scss';
Expand Down Expand Up @@ -97,6 +98,8 @@ const DataSourceList = () => {
return ShopifyIcon;
case 'google-sheets':
return GoogleSheetsIcon;
case 'salesforce-d2c':
return SalesforceCommerceD2CIcon;
default:
return HttpIcon;
}
Expand Down

0 comments on commit dfc8408

Please sign in to comment.