another lint fix

This commit is contained in:
Samuel Newman
2026-06-11 14:18:46 +03:00
parent 21b49a301e
commit d260a8ea4e
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -975,11 +975,6 @@
"count": 4
}
},
"src/lib/hooks/useOpenLink.ts": {
"@typescript-eslint/require-await": {
"count": 1
}
},
"src/lib/hooks/usePermissions.ts": {
"@typescript-eslint/no-misused-promises": {
"count": 1
+1 -1
View File
@@ -26,7 +26,7 @@ export function useOpenLink() {
const {inAppBrowserConsentControl} = useGlobalDialogsControlContext()
const openLink = useCallback(
async (url: string, override?: boolean, shouldProxy?: boolean) => {
(url: string, override?: boolean, shouldProxy?: boolean) => {
if (isBskyRSSUrl(url) && isRelativeUrl(url)) {
url = createBskyAppAbsoluteUrl(url)
}