We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6918834 commit cd0e404Copy full SHA for cd0e404
src/components/Generator/GeneredTaskfile/SaveFile/SaveFile.tsx
@@ -1,6 +1,6 @@
1
'use client';
2
3
-import { ReactElement, useState } from 'react';
+import {ReactElement, useState} from 'react';
4
5
import styles from './save-file.module.scss';
6
@@ -30,7 +30,7 @@ const CopyToClipboard = ({ content }: CopyProps): ReactElement => {
30
31
return (
32
<div className={styles.container}>
33
- <button type="button" className={`${styles.download}`} onClick={download} title="Download Taskfile" />
+ <button type="button" className={styles.download} onClick={download} title="Download Taskfile" />
34
<button
35
type="button"
36
className={`${styles.copy} ${isCopied && styles.copied}`}
0 commit comments