Skip to content

Commit

Permalink
fix: correct icp link (#97)
Browse files Browse the repository at this point in the history
1. Make it https
2. remove the www.

The old link was no longer working.
  • Loading branch information
davidjoy authored Aug 24, 2021
1 parent cbaf8c2 commit 89db6b2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class Footer extends React.Component {
values={{
icpMessage: (
<>
深圳市恒宇博科技有限公司 <a style={{ textDecoration: 'underline' }} href="http://www.beian.miit.gov.cn">粤ICP备17044299号-2</a>
深圳市恒宇博科技有限公司 <a style={{ textDecoration: 'underline' }} href="https://beian.miit.gov.cn">粤ICP备17044299号-2</a>
</>
),
}}
Expand Down
6 changes: 3 additions & 3 deletions src/components/__snapshots__/Footer.test.jsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ exports[`<Footer /> renders correctly renders with a language selector 1`] = `
<span>
深圳市恒宇博科技有限公司
<a
href="http://www.beian.miit.gov.cn"
href="https://beian.miit.gov.cn"
style={
Object {
"textDecoration": "underline",
Expand Down Expand Up @@ -837,7 +837,7 @@ exports[`<Footer /> renders correctly renders without a language selector 1`] =
<span>
深圳市恒宇博科技有限公司
<a
href="http://www.beian.miit.gov.cn"
href="https://beian.miit.gov.cn"
style={
Object {
"textDecoration": "underline",
Expand Down Expand Up @@ -1183,7 +1183,7 @@ exports[`<Footer /> renders correctly renders without a language selector in es
<span>
深圳市恒宇博科技有限公司
<a
href="http://www.beian.miit.gov.cn"
href="https://beian.miit.gov.cn"
style={
Object {
"textDecoration": "underline",
Expand Down

0 comments on commit 89db6b2

Please sign in to comment.