fix(tip): remove coffee tier labels

This commit is contained in:
2026-07-16 12:02:26 +08:00
parent 0b96b5ed95
commit 0409d55d7f
5 changed files with 0 additions and 18 deletions
-4
View File
@@ -7,7 +7,6 @@ export type TipCoffeeType = "small" | "medium" | "large";
export interface TipCoffeeOption {
readonly type: TipCoffeeType;
readonly tierLabel: string;
readonly amountCents: number;
readonly displayName: string;
readonly image: {
@@ -21,7 +20,6 @@ export interface TipCoffeeOption {
const TIP_COFFEE_OPTION_BY_TYPE: Record<TipCoffeeType, TipCoffeeOption> = {
small: {
type: "small",
tierLabel: "Small",
amountCents: 499,
displayName: "Velvet Espresso",
image: {
@@ -33,7 +31,6 @@ const TIP_COFFEE_OPTION_BY_TYPE: Record<TipCoffeeType, TipCoffeeOption> = {
},
medium: {
type: "medium",
tierLabel: "Medium",
amountCents: 999,
displayName: "Golden Reserve",
image: {
@@ -45,7 +42,6 @@ const TIP_COFFEE_OPTION_BY_TYPE: Record<TipCoffeeType, TipCoffeeOption> = {
},
large: {
type: "large",
tierLabel: "Large",
amountCents: 1999,
displayName: "Imperial Grand Cru",
image: {