Skip to content

Commit b22bb85

Browse files
committed
fix button id
1 parent b7d1406 commit b22bb85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libs/remix-ui/home-tab/src/lib/remix-ui-home-tab.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const RemixUiHomeTab = (props: RemixUiHomeTabProps) => {
3131
const { plugin } = props
3232

3333
const [state, setState] = useState<{
34-
themeQuality: {filter: string; name: string}
34+
themeQuality: { filter: string; name: string }
3535
}>({
3636
themeQuality: themes.light
3737
})
@@ -85,8 +85,8 @@ export const RemixUiHomeTab = (props: RemixUiHomeTabProps) => {
8585
<div className="container-fluid">
8686
<div className="row">
8787
<div className="d-flex w-100 m-3 justify-content-end">
88-
<button className="btn btn-secondary btn-md mr-3" onClick={startLearnEth}><i className="fa-solid fa-book mr-1"></i><FormattedMessage id="home.startLearning"/></button>
89-
<button className="btn btn-primary btn-md mr-2" onClick={openTemplateSelection}><i className="fa-solid fa-plus mr-1"></i><FormattedMessage id="home.createNewWorkspace"/></button>
88+
<button className="btn btn-secondary btn-md mr-3" onClick={startLearnEth}><i className="fa-solid fa-book mr-1"></i><FormattedMessage id="home.startLearning" /></button>
89+
<button data-id="landingPageImportFromTemplate" className="btn btn-primary btn-md mr-2" onClick={openTemplateSelection}><i className="fa-solid fa-plus mr-1"></i><FormattedMessage id="home.createNewWorkspace" /></button>
9090
</div>
9191
<div className="col-lg-8 col-xl-5 col-sm-12 mb-4">
9292
<HomeTabTitle />

0 commit comments

Comments
 (0)