fix; lint

This commit is contained in:
mahiro72 2025-12-12 20:33:43 +09:00
parent c0a66ee5fe
commit 8c9cf99c99
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,11 @@
import { useEffect, useState } from "react";
import AstralButton from "./AstralButton";
export default function ShareButton({ onShare }: { onShare: () => Promise<void> }) {
export default function ShareButton({
onShare,
}: {
onShare: () => Promise<void>;
}) {
const [copied, setCopied] = useState(false);
useEffect(() => {