File tree 2 files changed +4
-3
lines changed
components/SettingsLayout
pages/UserSettingsPage/TokensPage
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -75,5 +75,6 @@ const useStyles = makeStyles((theme) => ({
75
75
color : theme . palette . text . secondary ,
76
76
fontSize : 16 ,
77
77
marginTop : theme . spacing ( 0.5 ) ,
78
+ lineHeight : "140%" ,
78
79
} ,
79
80
} ) )
Original file line number Diff line number Diff line change 1
1
import { FC , PropsWithChildren } from "react"
2
- import { Section } from "../../../components/Section /Section"
2
+ import { Section } from "../../../components/SettingsLayout /Section"
3
3
import { TokensPageView } from "./TokensPageView"
4
4
import { tokensMachine } from "xServices/tokens/tokensXService"
5
5
import { useMachine } from "@xstate/react"
@@ -22,10 +22,10 @@ export const TokensPage: FC<PropsWithChildren<unknown>> = () => {
22
22
const { getTokensError, tokens, deleteTokenId } = tokensState . context
23
23
const styles = useStyles ( )
24
24
const description = (
25
- < p >
25
+ < >
26
26
{ Language . descriptionPrefix } { " " }
27
27
< code className = { styles . code } > coder tokens create</ code > command.
28
- </ p >
28
+ </ >
29
29
)
30
30
31
31
const content = (
You can’t perform that action at this time.
0 commit comments