]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/app/show-scores.ts
fix: Fix badge alignment and break out into component
[lemmy-ui.git] / src / shared / utils / app / show-scores.ts
1 import { UserService } from "../../services";
2
3 export default function showScores(
4   myUserInfo = UserService.Instance.myUserInfo
5 ): boolean {
6   return myUserInfo?.local_user_view.local_user.show_scores ?? true;
7 }