Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
fix(startup): fix int casting for congregation id
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao authored and sws2apps-admin committed Feb 16, 2022
1 parent 53b9848 commit 5b49775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Startup.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const Startup = () => {
setCongName(cong_name);
setClassCount(class_count);
setMeetingDay(meeting_day);
setCongID(++cong_id || '');
setCongID(+cong_id || '');
setAppLang(app_lang || 'e');
setLiveClass(liveEventClass);

Expand Down

0 comments on commit 5b49775

Please sign in to comment.