refactor: run formatter

This commit is contained in:
Elias Schneider
2023-08-17 14:47:58 +02:00
parent 7b34cb14cb
commit f02e2979c4
48 changed files with 1018 additions and 573 deletions

View File

@@ -36,7 +36,7 @@ const Share = ({ shareId }: { shareId: string }) => {
showErrorModal(
modals,
t("share.error.visitor-limit-exceeded.title"),
t("share.error.visitor-limit-exceeded.description")
t("share.error.visitor-limit-exceeded.description"),
);
} else {
toast.axiosError(e);
@@ -57,13 +57,13 @@ const Share = ({ shareId }: { shareId: string }) => {
showErrorModal(
modals,
t("share.error.removed.title"),
e.response.data.message
e.response.data.message,
);
} else {
showErrorModal(
modals,
t("share.error.not-found.title"),
t("share.error.not-found.description")
t("share.error.not-found.description"),
);
}
} else if (error == "share_password_required") {