Skip to content

Commit ecfb02d

Browse files
Fix lint errors
1 parent c05c95f commit ecfb02d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/QuickStartPromptButton.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import React, { useState, useRef, useEffect } from 'react';
1+
import React, { useEffect, useRef, useState } from 'react';
22
import styles from './QuickStartPromptButton.module.css';
33

44
const PROMPT = `Go step by step to create an Apify Actor:
@@ -81,7 +81,7 @@ export default function QuickStartPromptButton({ prompt = PROMPT }) {
8181
{showPrompt ? 'Hide the prompt' : 'Show the prompt'}
8282
</button>
8383
<button
84-
className={`${styles['copy-button']} ${copied ? styles['copied'] : ''}`}
84+
className={`${styles['copy-button']} ${copied ? styles.copied : ''}`}
8585
onClick={handleCopy}
8686
>
8787
{copied ? 'Copied!' : 'Copy prompt'}

0 commit comments

Comments
 (0)