send default as the auth identifier by default w/ burnettk

This commit is contained in:
jasquat 2023-11-10 16:07:53 -05:00
parent ba8f0a1c74
commit 930515ddb9

View File

@ -13,7 +13,7 @@ export const getBasicHeaders = (): Record<string, string> => {
return {
Authorization: `Bearer ${UserService.getAccessToken()}`,
'SpiffWorkflow-Authentication-Identifier':
UserService.getAuthenticationIdentifier() || '',
UserService.getAuthenticationIdentifier() || 'default',
};
}
return {};