Skip to content

Commit cd0e404

Browse files
committed
Remove unneeded string parsing
1 parent 6918834 commit cd0e404

File tree

1 file changed

+2
-2
lines changed
  • src/components/Generator/GeneredTaskfile/SaveFile

1 file changed

+2
-2
lines changed

src/components/Generator/GeneredTaskfile/SaveFile/SaveFile.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use client';
22

3-
import { ReactElement, useState } from 'react';
3+
import {ReactElement, useState} from 'react';
44

55
import styles from './save-file.module.scss';
66

@@ -30,7 +30,7 @@ const CopyToClipboard = ({ content }: CopyProps): ReactElement => {
3030

3131
return (
3232
<div className={styles.container}>
33-
<button type="button" className={`${styles.download}`} onClick={download} title="Download Taskfile" />
33+
<button type="button" className={styles.download} onClick={download} title="Download Taskfile" />
3434
<button
3535
type="button"
3636
className={`${styles.copy} ${isCopied && styles.copied}`}

0 commit comments

Comments
 (0)