fix: standardize punctuation in tooltips and comments across multiple locales and code files

This commit is contained in:
Linus Rath
2026-05-14 21:44:24 +02:00
parent b4a76bc4d1
commit c646c87030
31 changed files with 150 additions and 128 deletions
+2 -2
View File
@@ -66,7 +66,7 @@ export function useAttachmentDrag(
urlRef.current = url;
// Mark as owned so we revoke on unmount. Callers that hand back a
// shared URL (e.g. a cached thumbnail blob URL) can return the same
// string each time we still revoke once on unmount.
// string each time - we still revoke once on unmount.
ownedRef.current = true;
}
return url;
@@ -101,7 +101,7 @@ export function useAttachmentDrag(
);
const handleDragEnd = useCallback(() => {
// Keep the blob URL around briefly Chromium asynchronously fetches the
// Keep the blob URL around briefly - Chromium asynchronously fetches the
// blob: URL after dragend fires, so revoking immediately races the OS.
if (urlRef.current && ownedRef.current) {
const url = urlRef.current;