chore: small style updates fce23c97
Steve · 2026-01-11 12:09 2 file(s) · +6 −2
packages/client/src/components/post/GuestReply.tsx +4 −2
116 116
			setTimeout(() => setSuccess(false), 5000);
117 117
118 118
			// Notify parent to refresh replies list
119 -
			onReplyPosted?.();
119 +
			setTimeout(() => {
120 +
				onReplyPosted?.();
121 +
			}, 2000);
120 122
		} catch (err) {
121 123
			setError(err instanceof Error ? err.message : "Failed to post reply");
122 124
		} finally {
171 173
									type="text"
172 174
									value={handleInput}
173 175
									onChange={(e) => setHandleInput(e.target.value)}
174 -
									placeholder="user.bsky.social"
176 +
									placeholder="user.bsky.social or mydomain.com"
175 177
									className="flex-1 bg-transparent px-3 py-1 border border-white text-white text-sm"
176 178
								/>
177 179
								<button
packages/client/src/components/post/ReplyList.tsx +2 −0
152 152
									)}
153 153
									<a
154 154
										href={`https://pdsls.dev/${reply.uri}`}
155 +
										target="_blank"
156 +
										rel="noopener noreferrer"
155 157
										className="text-xs text-gray-400 hover:text-gray-300"
156 158
									>
157 159
										{formatDate(reply.createdAt)}