Skip to content

Commit 6b2ad1e

Browse files
authored
fix(app): update links (#849)
1 parent 42728c2 commit 6b2ad1e

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

packages/redux-devtools-app/src/components/Header.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,17 @@ class Header extends Component<Props> {
3434
<Button
3535
title="Documentation"
3636
tooltipPosition="bottom"
37-
onClick={this.openLink('http://extension.remotedev.io')}
37+
onClick={this.openLink(
38+
'https://github.com/reduxjs/redux-devtools/blob/main/README.md'
39+
)}
3840
>
3941
<GoBook />
4042
</Button>
4143
<Button
4244
title="Feedback"
4345
tooltipPosition="bottom"
4446
onClick={this.openLink(
45-
'http://extension.remotedev.io/docs/Feedback.html'
47+
'https://github.com/reduxjs/redux-devtools/discussions'
4648
)}
4749
>
4850
<IoMdText />

packages/redux-devtools-app/src/containers/monitors/Dispatcher.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ class Dispatcher extends Component<Props, State> {
9292
selectActionCreator = (selected: 'default' | 'actions-help' | number) => {
9393
if (selected === 'actions-help') {
9494
window.open(
95-
'https://github.com/zalmoxisus/redux-devtools-extension/blob/master/docs/' +
96-
'basics/Dispatcher.md'
95+
'https://github.com/reduxjs/redux-devtools/blob/main/extension/docs/' +
96+
'API/Arguments.md#actioncreators'
9797
);
9898
return;
9999
}

0 commit comments

Comments
 (0)