make Provider required in AppTheme

Signed-off-by: Colton Padden <colton.padden@fastmail.com>
This commit is contained in:
Colton Padden
2021-12-20 13:16:52 -05:00
parent e654134d22
commit cb278fa3ad
4 changed files with 4 additions and 5 deletions
@@ -40,11 +40,13 @@ describe('SidebarThemeSwitcher', () => {
id: 'dark',
title: 'Dark Theme',
variant: 'dark',
Provider: jest.fn(),
},
{
id: 'light',
title: 'Light Theme',
variant: 'light',
Provider: jest.fn(),
},
]);
});