Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prek/new links #187

Open
wants to merge 4 commits into
base: legacy
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gnt2-migration-ui/src/ui/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {Dashboard} from './Dashboard';
import {useServices} from './hooks/useServices';
import {ConnectionState} from '../services/ConnectionService';
import {useAsyncEffect} from './hooks/useAsyncEffect';
import {BrowserRouter} from 'react-router-dom';
import {HashRouter} from 'react-router-dom';

const App: React.FC = () => {
const [ready, setReady] = useState(false);
Expand All @@ -24,9 +24,9 @@ const App: React.FC = () => {
if (!ready) return null;

return (
<BrowserRouter>
<HashRouter>
<Dashboard/>
</BrowserRouter>
</HashRouter>
);
};

Expand Down
2 changes: 1 addition & 1 deletion gnt2-migration-ui/src/ui/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const Footer = () => (
<ContactCell>Reddit</ContactCell>
<img alt='Navigate to Golem Reddit profile' src={whiteArrow}/>
</ArrowCell>
<ArrowCell href="https://blog.golemproject.net/?gi=9ae7ace74474" target='_blank' rel="noopener noreferrer">
<ArrowCell href="https://blog.golem.network/?gi=9ae7ace74474" target='_blank' rel="noopener noreferrer">
<ContactCell>Golem blog</ContactCell>
<img alt='Navigate to Golem blog' src={whiteArrow}/>
</ArrowCell>
Expand Down
2 changes: 1 addition & 1 deletion gnt2-migration-ui/src/ui/Login/LoginSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const LoginSelector = ({onMetamaskClick}: LoginSelectorProps) => {
onChange={setIsChecked}
>
I have read and agree to the&nbsp;<Link
href='https://docs.golem.network/#/Products/Migrate/migration-terms-and-conditions'
href='https://docs.golem.network/docs/golem/migrate/terms'
onClick={e => e.stopPropagation()}
>&quot;Terms and Conditions&quot;</Link>
</Checkbox>
Expand Down
4 changes: 2 additions & 2 deletions gnt2-migration-ui/src/ui/commons/DashboardLayout/Help.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ export const Help = () => (
</Video>
</VideoContainer>
<HelpLink
href="https://docs.golem.network/#/Products/Migrate/migration-guideline"
href="https://docs.golem.network/docs/golem/migrate/guideline"
onClick={e => e.stopPropagation()}>Need more information? We got you covered.</HelpLink>
<TrackerLink
href="https://glm.golem.network/"
href="https://migration-tracker.golem.network/"
onClick={e => e.stopPropagation()}>Migration Tracker
</TrackerLink>
</HelpView>
Expand Down
Loading