Skip to content

Commit 1a2624b

Browse files
committed
Fixes
1 parent e74854b commit 1a2624b

4 files changed

Lines changed: 5 additions & 15 deletions

File tree

src/blog/tanstack-db-0.1-the-embedded-client-database-for-tanstack-query.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ authors:
6767

6868
If you’ve ever muttered “**why is this still so hard in 2025?**”—same.
6969

70-
TanStack DB is our answer: a client-side database layer powered by differential dataflow. It plugs straight into your existing useQuery calls. It recomputes only what changed—0.3 ms to update 100k rows on an M1 Pro
70+
TanStack DB is our answer: a client-side database layer powered by differential dataflow. It plugs straight into your existing useQuery calls.
71+
72+
It recomputes only what changed—**0.3 ms to update one row in a 100k collection** on an M1 Pro
7173

7274
One early-alpha adopter, building a Linear-like application, swapped out a pile of MobX code for TanStack DB and told us with relief, “everything is now completely instantaneous when clicking around the app, even w/ 1000s of tasks loaded.”
7375

src/components/Doc.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export function Doc({
148148
<div
149149
ref={markdownContainerRef}
150150
className={twMerge(
151-
'prose prose-gray prose-sm prose-p:leading-7 dark:prose-invert max-w-none',
151+
'prose prose-gray dark:prose-invert max-w-none',
152152
isTocVisible && 'pr-4 lg:pr-6',
153153
'styled-markdown-content'
154154
)}

src/components/Markdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const markdownComponents: Record<string, React.FC> = {
5757
code: function Code({ className, ...rest }: HTMLProps<HTMLElement>) {
5858
return (
5959
<span
60-
className={`border border-gray-500 border-opacity-20 bg-gray-500 bg-opacity-10 rounded p-1${
60+
className={`border border-gray-500 border-opacity-20 bg-gray-500 bg-opacity-10 rounded px-1 py-0.5${
6161
className ?? ` ${className}`
6262
}`}
6363
{...rest}

src/styles/app.css

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -693,15 +693,3 @@ mark {
693693
font-weight: 900;
694694
src: url('/fonts/inter-v19-latin-900italic.woff2') format('woff2');
695695
}
696-
697-
/* Override prose paragraph styles */
698-
.prose
699-
:is(:where(p):not(:where([class~='not-prose'], [class~='not-prose'] *))) {
700-
line-height: 1.5 !important;
701-
margin-top: 0 !important;
702-
margin-bottom: 1em !important;
703-
}
704-
705-
.p-1 {
706-
padding: 0.05rem;
707-
}

0 commit comments

Comments
 (0)