diff --git a/components/Loyalty/Blocks/DynamicContent/LoyaltyLevels/index.tsx b/components/Loyalty/Blocks/DynamicContent/LoyaltyLevels/index.tsx index d5be0f1e9..df306b82a 100644 --- a/components/Loyalty/Blocks/DynamicContent/LoyaltyLevels/index.tsx +++ b/components/Loyalty/Blocks/DynamicContent/LoyaltyLevels/index.tsx @@ -15,8 +15,6 @@ import { NewFriend, TrueFriend, } from "@/components/Levels" -import Button from "@/components/TempDesignSystem/Button" -import Link from "@/components/TempDesignSystem/Link" import Body from "@/components/TempDesignSystem/Text/Body" import Title from "@/components/TempDesignSystem/Text/Title" @@ -33,22 +31,15 @@ export default function LoyaltyLevels() { const { levels } = levelsData[lang] return ( -
-
- {levels.map((level: Level) => ( - - ))} -
- +
+ {levels.map((level: Level) => ( + + ))}
) }