Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
philipparndt committed May 10, 2024
1 parent decad7a commit cf50293
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/lib/api/v2/hue-api-v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ export const loadAllResources: () => Promise<Result<Device>> | undefined = async
return load("resource")
}


export const loadTyped: (resourceName: string) => Promise<Result<HueIdentifiable>> | undefined = async (resourceName: string) => {
return load(`resource/${resourceName}`)
}
Expand Down
2 changes: 1 addition & 1 deletion app/lib/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const startApp = async () => {

const level = log.level()
if (level === "DEBUG") {
let resources = await loadAllResources()
const resources = await loadAllResources()
log.debug("All resources", JSON.stringify(resources))
}

Expand Down

0 comments on commit cf50293

Please sign in to comment.