Skip to content

Commit

Permalink
Remove unneeded string parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
rick-nu committed Dec 6, 2024
1 parent 6918834 commit cd0e404
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import { ReactElement, useState } from 'react';
import {ReactElement, useState} from 'react';

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

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

return (
<div className={styles.container}>
<button type="button" className={`${styles.download}`} onClick={download} title="Download Taskfile" />
<button type="button" className={styles.download} onClick={download} title="Download Taskfile" />
<button
type="button"
className={`${styles.copy} ${isCopied && styles.copied}`}
Expand Down

0 comments on commit cd0e404

Please sign in to comment.