Commit f73d904
committed
fix: void-wrap updateTokenStats call to match BackendFacadeDeps signature
BackendFacadeDeps.updateTokenStats is typed as () => Promise<void>, but
updateTokenStats() returns Promise<DetailedStats | undefined>. The void
operator discards the return value so the arrow function satisfies the
expected type without changing behaviour.1 parent 375c374 commit f73d904
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7844 | 7844 | | |
7845 | 7845 | | |
7846 | 7846 | | |
7847 | | - | |
| 7847 | + | |
7848 | 7848 | | |
7849 | 7849 | | |
7850 | 7850 | | |
| |||
0 commit comments