hook.js:608 A tree hydrated but some attributes of the server rendered HTML didn't match the client properties. This won't be patched up. This can happen if a SSR-ed Client Component used:
- A server/client branch `if (typeof window !== 'undefined')`.
- Variable input such as `Date.now()` or `Math.random()` which changes each time it's called.
- Date formatting in a user's locale which doesn't match the server.
- External changing data without sending a snapshot of it along with the HTML.
- Invalid HTML tag nesting.
It can also happen if the client has a browser extension installed which messes with the HTML before React loaded.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tuono on main via ⬢ v22.12.0 via 🦀 v1.83.0 | |
❯ pnpm build | |
> workspace@ build C:\Users\jacob\code\tuono | |
> turbo build --filter=./packages/* | |
╭──────────────────────────────────────────────────────────────────────────╮ | |
│ │ | |
│ Update available v2.2.3 ≫ v2.3.3 │ | |
│ Changelog: https://github.com/vercel/turborepo/releases/tag/v2.3.3 │ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ElonsToyCar { | |
private int distance; | |
private int battery = 100; | |
public static ElonsToyCar buy() { | |
return new ElonsToyCar(); | |
} | |
public String distanceDisplay() { | |
return String.format("Driven %d meters", distance); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wonnx-embeddings-repro v0.1.0 (C:\Users\jacob\code\wonnx-embeddings-repro) | |
|-- js-sys v0.3.69 | |
| `-- wasm-bindgen v0.2.92 | |
| |-- cfg-if v1.0.0 | |
| `-- wasm-bindgen-macro v0.2.92 (proc-macro) | |
| |-- quote v1.0.36 | |
| | `-- proc-macro2 v1.0.86 | |
| | `-- unicode-ident v1.0.12 | |
| `-- wasm-bindgen-macro-support v0.2.92 | |
| |-- proc-macro2 v1.0.86 (*) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wonnx-repro v0.1.0 (C:\Users\jacob\code\wonnx-repro) | |
|-- wasm-bindgen v0.2.92 | |
| |-- cfg-if v1.0.0 | |
| `-- wasm-bindgen-macro v0.2.92 (proc-macro) | |
| |-- quote v1.0.36 | |
| | `-- proc-macro2 v1.0.86 | |
| | `-- unicode-ident v1.0.12 | |
| `-- wasm-bindgen-macro-support v0.2.92 | |
| |-- proc-macro2 v1.0.86 (*) | |
| |-- quote v1.0.36 (*) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { PrismaClient } from "@prisma/client"; | |
// PrismaClient is attached to the `global` object in development to prevent | |
// exhausting your database connection limit. | |
// | |
// Learn more: | |
// https://pris.ly/d/help/next-js-best-practices | |
const prismaClientPropertyName = `__prevent-name-collision__prisma` | |
type GlobalThisWithPrismaClient = typeof globalThis & { |
I hereby claim:
- I am jacobhq on github.
- I am jacobhq (https://keybase.io/jacobhq) on keybase.
- I have a public key ASC7iIbvgLzLWbLyp0ynDB1ssEY_fRDc8rRZsV31LnWVTwo
To claim this, I am signing this object:
I hereby claim:
- I am jacobhq on github.
- I am jhqcat (https://keybase.io/jhqcat) on keybase.
- I have a public key ASCH-U1bfqleeG9R-hKh3t1Om7U4A79Ar9rj79Jl6PzI3Qo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Reset */ | |
a, | |
table, | |
td { | |
-webkit-text-size-adjust: 100%; | |
-ms-text-size-adjust: 100%; | |
} | |
table, | |
td { | |
mso-table-lspace: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<div> | |
<h5 class="mt-3">Toggleable Button</h5> | |
<b-button :pressed.sync="myToggle" variant="primary">Toggle Me</b-button> | |
<p>Pressed State: <strong>{{ myToggle }}</strong></p> | |
<h5>In a button group</h5> | |
<b-button-group size="sm"> | |
<b-button | |
v-for="(btn, idx) in buttons" |
NewerOlder