Skip to content

Commit 833ea18

Browse files
linter
1 parent cd52c2c commit 833ea18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Graphs/graphUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const getStatusFromConditions = (conditions?: Condition[]): StatusType =>
88
return relevant?.status === 'True' ? 'OK' : 'ERROR';
99
};
1010

11-
export const resolveProviderType = (configName: string, providerConfigsList : ProviderConfig[]): string => {
11+
export const resolveProviderType = (configName: string, providerConfigsList: ProviderConfig[]): string => {
1212
for (const configList of providerConfigsList || []) {
1313
const match = configList.items?.find((item) => item.metadata?.name === configName);
1414

0 commit comments

Comments
 (0)