diff --git a/frontend/src/components/categories/index.tsx b/frontend/src/components/categories/index.tsx
index a8d6248a..02da4c0b 100644
--- a/frontend/src/components/categories/index.tsx
+++ b/frontend/src/components/categories/index.tsx
@@ -156,29 +156,26 @@ export const Categories = () => {
) : null}
- {selectedCategories.length > 0 && (
-
- }
- variant="contained"
- color="error"
- onClick={async () => {
- const isConfirmed = await dialogs.confirm(
- ,
- );
+
-
- )}
+ if (isConfirmed) {
+ deleteCategories(selectedCategories);
+ }
+ }}
+ disabled={!selectedCategories.length}
+ startIcon={}
+ >
+ {t("button.delete")}
+