@@ -21,7 +21,7 @@ import { enqueueSnackbar } from "notistack";
2121import Connections from "../components/Connections" ;
2222import Subscription from "../components/Subscription" ;
2323import { fetchData , patchData } from "./dataUtil" ;
24- import { organizationState , profileFlagsState } from "../data/atoms" ;
24+ import { profileFlagsState } from "../data/atoms" ;
2525import { useRecoilValue } from "recoil" ;
2626import "../index.css" ;
2727import ThemedJsonForm from "../components/ThemedJsonForm" ;
@@ -144,7 +144,6 @@ const SettingPage = () => {
144144 const [ loading , setLoading ] = useState ( true ) ;
145145 const [ updateKeys , setUpdateKeys ] = useState ( new Set ( ) ) ;
146146 const profileFlags = useRecoilValue ( profileFlagsState ) ;
147- const organization = useRecoilValue ( organizationState ) ;
148147 const formRef = createRef ( ) ;
149148
150149 useEffect ( ( ) => {
@@ -227,9 +226,9 @@ const SettingPage = () => {
227226 { loading ? (
228227 < CircularProgress />
229228 ) : (
230- < Grid container >
229+ < Grid container sx = { { m : 1 } } >
231230 < Grid item xs = { 12 } md = { 6 } >
232- < Stack spacing = { 2 } sx = { { textAlign : "left" , margin : "10px" } } >
231+ < Stack spacing = { 2 } sx = { { textAlign : "left" } } >
233232 < Typography variant = "h6" className = "section-header" >
234233 Settings
235234 </ Typography >
@@ -346,7 +345,7 @@ const SettingPage = () => {
346345 </ Stack >
347346 </ Grid >
348347
349- < Grid item xs = { 12 } md = { 6 } >
348+ < Grid item xs = { 12 } md = { 6 } sx = { { p : 0 } } >
350349 < Stack >
351350 < Connections />
352351 { process . env . REACT_APP_ENABLE_SUBSCRIPTION_MANAGEMENT ===
0 commit comments