From 1d1caa9c96951f8eeff4b5278cbdf1b4e3556252 Mon Sep 17 00:00:00 2001 From: Sam Huynh Date: Fri, 5 Apr 2024 11:20:55 +1100 Subject: [PATCH] feat: add arc browser code for referral --- src/commands/referral/services.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/referral/services.ts b/src/commands/referral/services.ts index 3d657871..55f7638f 100644 --- a/src/commands/referral/services.ts +++ b/src/commands/referral/services.ts @@ -1,8 +1,8 @@ import OZBARGAIN_SERVICES from './generated/ozbargain-services.json'; -const CUSTOM_SERVICES: string[] = ['everyday extra (woolworths & big w)', 'warp terminal']; +const CUSTOM_SERVICES: string[] = ['everyday extra (woolworths & big w)', 'warp terminal', 'arc browser']; -export const services: string[] = [...new Set([...OZBARGAIN_SERVICES, ...CUSTOM_SERVICES])]; +export const services: string[] = [...new Set([...OZBARGAIN_SERVICES, ...CUSTOM_SERVICES])].sort((a, b) => (a.toLowerCase() < b.toLowerCase() ? -1 : 1)); const options = services.map((service) => ({ name: service,