Skip to content

Commit b61c36f

Browse files
Fix routing to the index
1 parent d5dd0cb commit b61c36f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/Showcase.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const Showcase: React.FunctionComponent<unknown> = () => {
127127
return <div className="content-loader"></div>
128128
}
129129

130-
const result = logos.map((logoSRC, index) => {
130+
return logos.map((logoSRC, index) => {
131131
return (
132132
<Link
133133
to="/creator"
@@ -183,8 +183,6 @@ const Showcase: React.FunctionComponent<unknown> = () => {
183183
</Link>
184184
)
185185
})
186-
187-
return result
188186
}
189187

190188
return (

src/components/ui/common/BackUI.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const BackUI: React.FunctionComponent<{ className?: string; to?: string; url?: s
2525
</div>
2626
) : (
2727
<div className="back">
28-
<Link className="" to={props.to || "/start"}>
28+
<Link className="" to={props.to || "/"}>
2929
<svg width="42" height="42" viewBox="0 0 42 42" fill="none" xmlns="http://www.w3.org/2000/svg">
3030
<circle cx="21" cy="21" r="20.5" fill="white" stroke="#E7E7E7" />
3131
<path

0 commit comments

Comments
 (0)