fix lint issue
This commit is contained in:
parent
1feeb3fdea
commit
f73c9afdd8
1 changed files with 4 additions and 1 deletions
|
@ -60,7 +60,10 @@ export const LdapMapperList = () => {
|
||||||
addAlert(t("common:mappingDeletedSuccess"), AlertVariant.success);
|
addAlert(t("common:mappingDeletedSuccess"), AlertVariant.success);
|
||||||
setSelectedMapper(undefined);
|
setSelectedMapper(undefined);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
addAlert(t("common:mappingDeletedError", { error }), AlertVariant.danger);
|
addAlert(
|
||||||
|
t("common:mappingDeletedError", { error }),
|
||||||
|
AlertVariant.danger
|
||||||
|
);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue