diff options
author | Ajay Ramachandran <[email protected]> | 2020-05-15 19:39:37 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-05-15 19:39:37 -0400 |
commit | cff72b19c7816d0122b462d587ce35318cfca5d9 (patch) | |
tree | 6427addf45fece5b7d330c4d50f7cde51b6a0029 | |
parent | 941bd41cdb16138c9565e03d3faa8434388fd89e (diff) | |
download | SponsorBlock-cff72b19c7816d0122b462d587ce35318cfca5d9.tar.gz SponsorBlock-cff72b19c7816d0122b462d587ce35318cfca5d9.zip |
Enable category vote on main server
-rw-r--r-- | src/components/SkipNoticeComponent.tsx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/components/SkipNoticeComponent.tsx b/src/components/SkipNoticeComponent.tsx index b4399e65..e1ecf01c 100644 --- a/src/components/SkipNoticeComponent.tsx +++ b/src/components/SkipNoticeComponent.tsx @@ -198,13 +198,11 @@ class SkipNoticeComponent extends React.Component<SkipNoticeProps, SkipNoticeSta </button> {/* Category vote */} - {Config.config.testingServer && - <button className="sponsorSkipObject sponsorSkipNoticeButton" - onClick={() => this.openCategoryChooser()}> + <button className="sponsorSkipObject sponsorSkipNoticeButton" + onClick={() => this.openCategoryChooser()}> - {chrome.i18n.getMessage("incorrectCategory")} - </button> - } + {chrome.i18n.getMessage("incorrectCategory")} + </button> </td> </tr> |