aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorXe Iaso <me@christine.website>2023-01-28 13:35:00 -0500
committerXe Iaso <me@christine.website>2023-01-28 13:35:00 -0500
commit741fd9480951eda085935568bb543732def1084d (patch)
tree3025cdc6c4fb04e2ef08e28f2d8eacc76e10ceff /src
parent06ed2f79852cadc26a052ec438488d91193ce4e5 (diff)
downloadxesite-741fd9480951eda085935568bb543732def1084d.tar.xz
xesite-741fd9480951eda085935568bb543732def1084d.zip
src/frontend/mastodon_share_button: fix JSX formatting
Signed-off-by: Xe Iaso <me@christine.website>
Diffstat (limited to 'src')
-rw-r--r--src/frontend/mastodon_share_button.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mastodon_share_button.tsx b/src/frontend/mastodon_share_button.tsx
index f2129e7..744570f 100644
--- a/src/frontend/mastodon_share_button.tsx
+++ b/src/frontend/mastodon_share_button.tsx
@@ -27,7 +27,7 @@ ${series}${tags.innerText} @cadey@pony.social`;
const instanceBox = (
<input type="text" placeholder="https://pony.social" value={defaultURL} />
);
- const tootBox = <textarea rows="6" cols="40">{tootTemplate}</textarea>;
+ const tootBox = <textarea rows={6} cols={40}>{tootTemplate}</textarea>;
const doShare = () => {
let instanceURL = instanceBox.value;