File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages/app/src/app/pages/common/Navigation/Actions Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,15 @@ import Tooltip from '@codesandbox/common/lib/components/Tooltip';
22import { exploreUrl } from '@codesandbox/common/lib/utils/url-generator' ;
33import React , { FunctionComponent } from 'react' ;
44import FlameIcon from 'react-icons/lib/go/flame' ;
5- import { Link } from 'react-router-dom' ;
65
76import { Action } from '../elements' ;
87
98export 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) ;
You can’t perform that action at this time.
0 commit comments