apply review comments

This commit is contained in:
imperosol
2026-05-20 10:39:52 +02:00
parent 57a422de8c
commit 204e4e97bd
4 changed files with 25 additions and 27 deletions
+3 -3
View File
@@ -3,7 +3,7 @@ import { Alpine } from "alpinejs";
import { limitedChoices } from "#core:alpine/limited-choices";
import {
type NotificationPlugin,
alpinePlugin as notificationPlugin,
notificationsPlugin as notifications,
} from "#core:utils/notifications";
declare module "alpinejs" {
@@ -11,8 +11,8 @@ declare module "alpinejs" {
$notifications: NotificationPlugin;
}
}
Alpine.plugin([sort, limitedChoices]);
Alpine.magic("notifications", notificationPlugin);
Alpine.plugin([sort, limitedChoices, notifications]);
// biome-ignore lint/style/useNamingConvention: it's how it's named
Object.assign(window, { Alpine });