akadori

Results 2 issues of akadori

``` ~ % RUST_BACKTRACE=full mise install ghq mise ~/.local/share/mise/plugins/ghq/bin/install failed ∗ Downloading and installing ghq... Fail: Could not download Fail: An error occurred Error: 0: ~/.local/share/mise/plugins/ghq/bin/install exited with non-zero status:...

```tsx // components/block-counter.tsx import { useState, useCallback } from "react" export default () => { const [count, setCount] = useState(0) const increment = useCallback(() => setCount((c) => c + 1),...