Skip to content

Commit

Permalink
Remove unnecessary typ assertion
Browse files Browse the repository at this point in the history
The type is already set on this variable.
  • Loading branch information
victorlin committed Nov 19, 2024
1 parent 79f4b19 commit 1726249
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static-site/src/sections/group-members-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const GroupMembersPage = ({ groupName }: {groupName: string}) => {
<BigSpacer/>

{roles && members
? <MembersTable members={members as GroupMember[]} />
? <MembersTable members={members} />
: <splashStyles.H4>Fetching group members...</splashStyles.H4>}
</GenericPage>
)
Expand Down

0 comments on commit 1726249

Please sign in to comment.