Skip to content

Commit 1a463d9

Browse files
let -> const
1 parent a0f744c commit 1a463d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/handlers/state.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const FlyProvider: CloudProvider<FlyCurrentState> = {
3535
export async function startStateStream<T>(signal: AbortSignal, provider: CloudProvider<T>) {
3636
while (!signal.aborted) {
3737
try {
38-
let currentState = await provider.getCurrentState()
38+
const currentState = await provider.getCurrentState()
3939

4040
await provider.reportCurrentState(currentState)
4141

0 commit comments

Comments
 (0)