Skip to content

Commit

Permalink
feat: add arc browser code for referral (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
samhwang authored Apr 5, 2024
1 parent 8453829 commit 871e2bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/referral/services.ts
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit 871e2bf

Please sign in to comment.