Skip to content

Commit

Permalink
fix/error in quote-upload
Browse files Browse the repository at this point in the history
  • Loading branch information
nowrobin committed Jul 17, 2024
1 parent bf777fc commit 164ec8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/quote-upload/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function UploadQuote({
const [content, setContent] = useState<string[]>([]);
const [user, setUser] = useState<string>(params.userName);
const [id, setId] = useState<any>();
const [author, setAuthor] = useState(params.userName.toString());
const [author, setAuthor] = useState(params.userName);
const [title, setTitle] = useState("Title");

useEffect(() => {
Expand Down

0 comments on commit 164ec8a

Please sign in to comment.