Skip to content

Commit 0fd58f4

Browse files
useSql: Fix permission priming on v2 (#69)
1 parent a739717 commit 0fd58f4

21 files changed

Lines changed: 2782 additions & 5112 deletions

.eslintrc.json

Lines changed: 0 additions & 33 deletions
This file was deleted.

docs/utils-reference/getting-started.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ npm install --save @raycast/utils
1616

1717
## Changelog
1818

19+
### v2.2.5
20+
21+
- Fixed an issue where `useSql` would not properly show the permission priming screen
22+
1923
### v2.2.4
2024

2125
- Fixed an issue where an avatar's initials wouldn't be centered

eslint.config.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const { defineConfig } = require("eslint/config");
2+
const raycastConfig = require("@raycast/eslint-config");
3+
4+
module.exports = defineConfig([
5+
...raycastConfig,
6+
{
7+
rules: {
8+
"@typescript-eslint/no-explicit-any": "warn",
9+
},
10+
},
11+
]);

0 commit comments

Comments
 (0)