summaryrefslogtreecommitdiffhomepage
path: root/packages/web/src/components/share/content-diff.tsx
diff options
context:
space:
mode:
authorDax <[email protected]>2025-10-31 15:07:36 -0400
committerGitHub <[email protected]>2025-10-31 15:07:36 -0400
commit96bdeb3c7b04e95ecabaa0253deddd2a22e14afe (patch)
treec37898ee62e8c4f84f5d9abd4c644b1ec7066963 /packages/web/src/components/share/content-diff.tsx
parent81c617770d8595978b497a9cf3c0a5316b108352 (diff)
downloadopencode-96bdeb3c7b04e95ecabaa0253deddd2a22e14afe.tar.gz
opencode-96bdeb3c7b04e95ecabaa0253deddd2a22e14afe.zip
OpenTUI is here (#2685)
Diffstat (limited to 'packages/web/src/components/share/content-diff.tsx')
-rw-r--r--packages/web/src/components/share/content-diff.tsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/web/src/components/share/content-diff.tsx b/packages/web/src/components/share/content-diff.tsx
index 45249e0cd..9ccd554d0 100644
--- a/packages/web/src/components/share/content-diff.tsx
+++ b/packages/web/src/components/share/content-diff.tsx
@@ -110,7 +110,10 @@ export function ContentDiff(props: Props) {
})
const mobileRows = createMemo(() => {
- const mobileBlocks: { type: "removed" | "added" | "unchanged"; lines: string[] }[] = []
+ const mobileBlocks: {
+ type: "removed" | "added" | "unchanged"
+ lines: string[]
+ }[] = []
const currentRows = rows()
let i = 0