Skip to content

Commit

Permalink
fix: wrong object accessed for English terms HL-1031 (#2438)
Browse files Browse the repository at this point in the history
  • Loading branch information
sirtawast authored Nov 8, 2023
1 parent 59949c9 commit c5e53b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const useTermsOfServiceData = (
return String(user.termsOfServiceInEffect?.termsMdSv);

case 'en':
return String(user.termsOfServiceInEffect?.termsMdSv);
return String(user.termsOfServiceInEffect?.termsMdEn);

default:
return '';
Expand Down

0 comments on commit c5e53b7

Please sign in to comment.