From f2252ce0f77132c1285801cdad7467fbe2bf8f6c Mon Sep 17 00:00:00 2001 From: Christian Andolf Date: Wed, 26 Mar 2025 09:51:54 +0100 Subject: [PATCH] fix: default loyalty levels to be two rows to be compatible with existing behaviour --- apps/scandic-web/components/Levels/Icon.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/scandic-web/components/Levels/Icon.tsx b/apps/scandic-web/components/Levels/Icon.tsx index fe0715fb9..21ef0199e 100644 --- a/apps/scandic-web/components/Levels/Icon.tsx +++ b/apps/scandic-web/components/Levels/Icon.tsx @@ -21,7 +21,7 @@ import type { MembershipLevelIconProps } from "@/types/components/myPages/member export default function MembershipLevelIcon({ level, - rows = 1, + rows = 2, color = "pale", ...props }: MembershipLevelIconProps) {