File tree 1 file changed +6
-12
lines changed
site/src/pages/UserSettingsPage/SecurityPage 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -101,21 +101,15 @@ export const useSingleSignOnSection = () => {
101
101
} ;
102
102
} ;
103
103
104
- const useEmptyStateStyles = makeStyles ( ( theme ) => ( {
105
- root : {
106
- minHeight : 0 ,
107
- padding : theme . spacing ( 6 , 4 ) ,
108
- backgroundColor : theme . palette . background . paper ,
109
- borderRadius : theme . shape . borderRadius ,
110
- } ,
111
- } ) ) ;
112
-
113
104
function SSOEmptyState ( ) {
114
- const styles = useEmptyStateStyles ( ) ;
115
-
116
105
return (
117
106
< EmptyState
118
- className = { styles . root }
107
+ css = { ( theme ) => ( {
108
+ minHeight : 0 ,
109
+ padding : theme . spacing ( 6 , 4 ) ,
110
+ backgroundColor : theme . palette . background . paper ,
111
+ borderRadius : theme . shape . borderRadius ,
112
+ } ) }
119
113
message = "No SSO Providers"
120
114
description = "No SSO providers are configured with this Coder deployment."
121
115
cta = {
You can’t perform that action at this time.
0 commit comments