refactor: run formatter

This commit is contained in:
Elias Schneider
2024-11-26 20:58:32 +01:00
parent e86f93830b
commit 3df80acff9
6 changed files with 19 additions and 19 deletions

View File

@@ -108,7 +108,7 @@ const MyShares = () => {
showShareInformationsModal(
modals,
share,
parseInt(config.get("share.maxSize"))
parseInt(config.get("share.maxSize")),
);
}}
>
@@ -121,7 +121,7 @@ const MyShares = () => {
onClick={() => {
if (window.isSecureContext) {
clipboard.copy(
`${window.location.origin}/s/${share.id}`
`${window.location.origin}/s/${share.id}`,
);
toast.success(t("common.notify.copied-link"));
} else {
@@ -155,7 +155,7 @@ const MyShares = () => {
onConfirm: () => {
shareService.remove(share.id);
setShares(
shares.filter((item) => item.id !== share.id)
shares.filter((item) => item.id !== share.id),
);
},
});