fix lint issue

This commit is contained in:
mfrances 2021-04-15 17:14:53 -04:00
parent 1feeb3fdea
commit f73c9afdd8

View file

@ -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
);
} }
}, },
}); });