diff --git a/src/lib/components/NotificationList.svelte b/src/lib/components/NotificationList.svelte index e605f9f..a48c04b 100644 --- a/src/lib/components/NotificationList.svelte +++ b/src/lib/components/NotificationList.svelte @@ -5,21 +5,6 @@ BottomRight = 'bottom_right', BottomLeft = 'bottom_left', } - - export function getPositionClasses(position: Position = Position.TopRight) { - switch (position) { - case Position.TopRight: - return 'position-top-right'; - case Position.TopLeft: - return 'position-top-left'; - case Position.BottomRight: - return 'position-bottom-right'; - case Position.BottomLeft: - return 'position-bottom-left'; - default: - return 'position-top-right'; - } - }