Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/libs/actions/getCompanyCardBankConnection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ type CompanyCardBankConnection = {
domainName: string;
scrapeMinDate: string;
isCorporate: string;
isNewDot: string;
};

// TODO remove this when BE will support bank UI callbacks
Expand All @@ -24,7 +25,7 @@ export default function getCompanyCardBankConnection(bankName?: string, domainNa
return null;
}
const authToken = NetworkStore.getAuthToken();
const params: CompanyCardBankConnection = {authToken: authToken ?? '', domainName: domainName ?? '', isCorporate: 'true', scrapeMinDate: scrapeMinDate ?? ''};
const params: CompanyCardBankConnection = {authToken: authToken ?? '', isNewDot: 'true', domainName: domainName ?? '', isCorporate: 'true', scrapeMinDate: scrapeMinDate ?? ''};
const commandURL = getApiRoot({
shouldSkipWebProxy: true,
command: '',
Expand Down