chore: linting

This commit is contained in:
zhom
2026-03-28 20:55:10 +04:00
parent 248927ae6f
commit d0e3e15fd3
61 changed files with 1179 additions and 835 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ export function showCleanErrorToast(error: unknown, prefix?: string) {
const message = prefix ? `${prefix}: ${rootError}` : rootError;
// Import dynamically to avoid circular dependencies
import("./toast-utils").then(({ showErrorToast }) => {
void import("./toast-utils").then(({ showErrorToast }) => {
showErrorToast(message);
});
}