Skip to content

Commit

Permalink
Remove the SpectrumProvider
Browse files Browse the repository at this point in the history
- Brian will be implementing this with his changes
  • Loading branch information
mofojed committed Oct 17, 2023
1 parent e038f84 commit b45f0f8
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions packages/code-studio/src/AppRoot.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import React from 'react';
import { Provider } from 'react-redux';
import { Provider as SpectrumProvider } from '@adobe/react-spectrum';
import { themeDHDefault } from '@deephaven/components';
import { MonacoUtils } from '@deephaven/console';
import { store } from '@deephaven/redux';
import { DownloadServiceWorkerUtils } from '@deephaven/iris-grid';
Expand All @@ -24,14 +22,7 @@ export function AppRoot(): JSX.Element {

return (
<Provider store={store}>
{/* TODO: Remove this SpectrumProvider. Brian will be implementing it with his changes. */}
<SpectrumProvider
UNSAFE_style={{ backgroundColor: 'transparent' }}
colorScheme="dark"
theme={themeDHDefault}
>
<AppRouter />
</SpectrumProvider>
<AppRouter />
</Provider>
);
}
Expand Down

0 comments on commit b45f0f8

Please sign in to comment.