We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6157bec commit dec7230Copy full SHA for dec7230
.changeset/fuzzy-frogs-develop.md
@@ -0,0 +1,5 @@
1
+---
2
+"nostrudel": patch
3
4
+
5
+Fix page changing from RTL when viewing some profiles
index.html
@@ -1,5 +1,5 @@
<!doctype html>
-<html lang="en" dir="auto">
+<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
src/components/note/timeline-note/text-note-contents.tsx
@@ -68,7 +68,7 @@ export const TextNoteContents = React.memo(
68
<MediaOwnerProvider owner={(event as NostrEvent).pubkey as string | undefined}>
69
<LightboxProvider>
70
<Suspense fallback={<Spinner />}>
71
- <Box whiteSpace="pre-wrap" {...props}>
+ <Box whiteSpace="pre-wrap" dir="auto" {...props}>
72
{content}
73
</Box>
74
</Suspense>
0 commit comments