Skip to content

Commit 51ec11f

Browse files
committed
Fix explore link
1 parent 12f6b8e commit 51ec11f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

packages/app/src/app/pages/common/Navigation/Actions/ExploreAction.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@ import Tooltip from '@codesandbox/common/lib/components/Tooltip';
22
import { exploreUrl } from '@codesandbox/common/lib/utils/url-generator';
33
import React, { FunctionComponent } from 'react';
44
import FlameIcon from 'react-icons/lib/go/flame';
5-
import { Link } from 'react-router-dom';
65

76
import { Action } from '../elements';
87

98
export const ExploreAction: FunctionComponent = () => (
109
<Action>
1110
<Tooltip content="Explore Sandboxes" placement="bottom">
12-
<Link style={{ color: 'white' }} to={exploreUrl()}>
11+
<a style={{ color: 'white' }} href={exploreUrl()}>
1312
<FlameIcon height={35} />
14-
</Link>
13+
</a>
1514
</Tooltip>
1615
</Action>
1716
);

0 commit comments

Comments
 (0)