Skip to content

Commit bd251be

Browse files
committed
fixup
1 parent e1fd8d3 commit bd251be

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/docs/src/routes/(blog)/blog/(articles)/astro-qwik/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ For example, here's how we use a Qwik counter component in Astro.
9090
**counter.tsx**
9191

9292
```tsx
93-
import { component$, useSignal } from "@builder.io/qwik";
93+
import { component$, useSignal } from "@qwik.dev/core";
9494

9595
export const Counter = component$(() => {
9696
const counter = useSignal(0);

packages/insights/src/db/query-helpers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export function delayBucketField(bucket: number): VectorKeys<`delayCount`> {
6464
}
6565

6666
function pad(value: number): VectorKeys<''> {
67-
return value < 10 ? '0' + value : (String(value) as any);
67+
return value < 10 ? (('0' + value) as '00') : (String(value) as any);
6868
}
6969

7070
export function createEdgeRow({

0 commit comments

Comments
 (0)