Skip to content

Commit

Permalink
uncomment docs lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BrtqKr committed Oct 31, 2024
1 parent b99359c commit f2f4c4b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ jobs:
run: |
cargo run --bin generate_from_types -- --check
# - name: 🖋️ Run website lint + typecheck + build
# working-directory: ./docs
# run: |
# pnpm install --frozen-lockfile
# pnpm run typecheck && pnpm run lint --max-warnings=0 && pnpm run build
- name: 🖋️ Run website lint + typecheck + build
working-directory: ./docs
run: |
pnpm install --frozen-lockfile
pnpm run typecheck && pnpm run lint --max-warnings=0 && pnpm run build
1 change: 0 additions & 1 deletion ts/examples/vite-browser-render/src/examples/Counter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ function Counter() {
const canvasRef = useRef<HTMLCanvasElement | null>(null);
const [count, setCount] = useState(0);
const renderer = useRenderer();

useEffect(() => {
if (renderer == null) {
return;
Expand Down

0 comments on commit f2f4c4b

Please sign in to comment.