Skip to content

Commit b2a0ba6

Browse files
committedDec 11, 2024
Fix eslint errors
1 parent 063ed06 commit b2a0ba6

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed
 

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/js/settings/components/classifai-onboarding/index.js

+10-8
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@ export const ClassifAIOnboarding = () => {
4848
<strong>
4949
{ __( 'Get an AI platform account.', 'classifai' ) }
5050
</strong>
51-
<a href="#">{/* { TODO: Add link here } */}
52-
{ __(
53-
'Learn more about choosing AI platforms',
54-
'classifai'
55-
) }
56-
</a>
5751
</li>
5852
<li>
5953
<strong>
@@ -62,7 +56,11 @@ export const ClassifAIOnboarding = () => {
6256
'classifai'
6357
) }
6458
</strong>
65-
<a href="#">{/* { TODO: Add link here } */}
59+
<a
60+
href="https://github.com/10up/classifai?tab=readme-ov-file#set-up-classification-via-ibm-watson"
61+
target="_blank"
62+
rel="noopener noreferrer"
63+
>
6664
{ __( 'Find out how to get set up', 'classifai' ) }
6765
</a>
6866
</li>
@@ -79,7 +77,11 @@ export const ClassifAIOnboarding = () => {
7977
'If you need any help along the way, ',
8078
'classifai'
8179
) }
82-
<a href="#">{/* { TODO: Add link here } */}
80+
<a
81+
href="https://github.com/10up/classifai#frequently-asked-questions"
82+
target="_blank"
83+
rel="noopener noreferrer"
84+
>
8385
{ __( 'browse our help topics.', 'classifai' ) }
8486
</a>
8587
</p>

‎src/js/settings/components/header/index.js

-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import { ClassifAILogo } from '../../utils/icons';
2323
* @return {React.ReactElement} Header component.
2424
*/
2525
export const Header = () => {
26-
2726
return (
2827
<header id="classifai-header">
2928
<div className="classifai-header-layout">

0 commit comments

Comments
 (0)
Please sign in to comment.