Skip to content

Commit 8aa7011

Browse files
committed
feat(test): migrate from jest to vitest
Signed-off-by: Adam Setch <adam.setch@outlook.com>
1 parent 90ccb2b commit 8aa7011

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/renderer/components/filters/UserTypeFilter.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ export const UserTypeFilter: FC = () => {
2929
<Stack direction="vertical" gap="condensed">
3030
<Stack direction="horizontal" gap="condensed">
3131
<PersonIcon size={Size.SMALL} />
32-
{userTypeFilter.FILTER_TYPES['User'].title}
32+
{userTypeFilter.FILTER_TYPES.User.title}
3333
</Stack>
3434
<Stack direction="horizontal" gap="condensed">
3535
<DependabotIcon size={Size.SMALL} />
36-
{userTypeFilter.FILTER_TYPES['Bot'].description}
36+
{userTypeFilter.FILTER_TYPES.Bot.description}
3737
</Stack>
3838
<Stack direction="horizontal" gap="condensed">
3939
<OrganizationIcon size={Size.SMALL} />
40-
{userTypeFilter.FILTER_TYPES['Organization'].title}
40+
{userTypeFilter.FILTER_TYPES.Organization.title}
4141
</Stack>
4242
</Stack>
4343
</div>

0 commit comments

Comments
 (0)