Skip to content

Commit

Permalink
fix types and test (#524)
Browse files Browse the repository at this point in the history
  • Loading branch information
vittoriaThinkst authored and mclmax committed Jul 16, 2024
1 parent ea7abf8 commit baab54f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend_vue/src/components/tokens/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export type RequestHeaders = Record<string, string>;
export type AWSLogDataType = {
last_used: string | null;
service_used: string;
eventName: string | null;
eventName?: string[] | null;
};

export type AdditionalInfoType = {
Expand Down
2 changes: 1 addition & 1 deletion frontend_vue/src/utils/incidentAlertService.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ describe('buildIncidentDetails', () => {
token_type: 'aws_keys',
additional_info: {
aws_key_log_data: {
last_used: 1714637259.126385,
last_used: '2021-12-12T12:12:12Z',
service_used: 'service name',
},
},
Expand Down

0 comments on commit baab54f

Please sign in to comment.