Skip to content

Commit

Permalink
feat: 공유 링크에 https 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
nim-od committed Aug 23, 2024
1 parent f303c05 commit 455c500
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/user/src/utils/getSharedLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import { Category } from '@softeer/common/types';
import type { User } from 'src/types/user.d.ts';

const DOMAIN: Record<Category | 'default', string> = {
default: 'www.batro.org',
leisure: 'leisure.batro.org',
pet: 'pet.batro.org',
travel: 'travel.batro.org',
place: 'space.batro.org',
default: 'https://www.batro.org',
leisure: 'https://leisure.batro.org',
pet: 'https://pet.batro.org',
travel: 'https://travel.batro.org',
place: 'https://space.batro.org',
};

export default function getSharedLink({
Expand Down

0 comments on commit 455c500

Please sign in to comment.