style: прогнать prettier по frontend

This commit is contained in:
2026-05-21 15:52:43 +05:00
parent b0cdf6207c
commit 95b8d97ccf
63 changed files with 1517 additions and 863 deletions
-2
View File
@@ -93,5 +93,3 @@ export const formatStorageUnit = (bytes: number): string => {
// Возврат отформатированной единицы хранения
return sizes[i];
};
-2
View File
@@ -49,5 +49,3 @@ export const deepCopy = <T>(source: Partial<T>): T => {
return objCopy as T;
};
-2
View File
@@ -10,5 +10,3 @@ export function translateRouteTitleI18n(title: any) {
}
return title;
}
-2
View File
@@ -37,5 +37,3 @@ export function isExternal(path: string) {
const isExternal = /^(https?:|http?:|mailto:|tel:)/.test(path);
return isExternal;
}
-2
View File
@@ -67,5 +67,3 @@ export const scrollTo = (to: number, duration: number, callback?: any) => {
};
animateScroll();
};
-2
View File
@@ -99,5 +99,3 @@ export const getYearLater = (): number => {
date.setFullYear(date.getFullYear() + 1);
return date.getTime();
};