Skip to content
This repository has been archived by the owner on Aug 11, 2021. It is now read-only.

Commit

Permalink
Remove safety error translation
Browse files Browse the repository at this point in the history
  • Loading branch information
mmso committed Jun 18, 2020
1 parent 456aa65 commit 1c25533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/containers/setup/reset/resetCalendarKeys.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const resetCalendarKeys = async ({ api, calendars, getAddressKeys, addres
const resetCalendar = ResetCalendars.find(({ ID }) => ID === calendarID);

if (!resetCalendar) {
throw new Error(c('Error').t`Reset calendar not found`);
throw new Error('Reset calendar not found');
}
const { Members: MemberPublicKeys } = resetCalendar;

Expand Down

0 comments on commit 1c25533

Please sign in to comment.