Skip to content

Commit

Permalink
chore: remove unused await
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikstrasser committed Oct 25, 2024
1 parent f92db64 commit 3b1bc27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dcupl/dcupl.instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class DcuplInstance {
*/
public async shouldUpdate() {
if (this.options?.useCustomUpdateFunction) {
return await this.customShouldUpdate()
return this.customShouldUpdate()
}
if (!this.options?.config?.projectId) return true
const response: { changedAt: number } = await $fetch(
Expand Down

0 comments on commit 3b1bc27

Please sign in to comment.