Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev to Main 드디어 런칭 #183

Merged
merged 3 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const SCHEDULE_INFO: ScheduleInfo = {

export const MESSAGE_INFO: MessageInfo = {
kakaoLogin: '10초만에 로그인하고\n승부예측 참여하세요',
inviteFriends: '친구 초대하면\n둘다 응모권 1장!',
inviteFriends: '친구 초대하면\n둘다 응모권 5장!',
};

export const ICON_INFO_LIST = Object.values(ICON_INFO);
Expand Down
2 changes: 1 addition & 1 deletion components/ShareModal/useCardShare.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,12 @@ export function useCardShare() {
// text: 'https://www.toky.com',
// title: 'hi',
});
postShare();
} catch (e: any) {
if (name in e && e.name !== 'AbortError') {
console.error(e);
}
} finally {
postShare();
setIsShareLoading(false);
}
}
Expand Down
Loading