diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 20b74bb96..e782a7e3f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,6 +21,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 1 + submodules: true - name: Setup Node.js 24.x uses: actions/setup-node@v4 diff --git a/skills b/skills index 8030aef02..2dbb87011 160000 --- a/skills +++ b/skills @@ -1 +1 @@ -Subproject commit 8030aef027b7227b2fd63bf1e31bdf9d8e806383 +Subproject commit 2dbb87011a097086fa82f79d6d559a315b0b3c19 diff --git a/src-tauri/src/runtime/types.rs b/src-tauri/src/runtime/types.rs index 7616e6065..3beb3d646 100644 --- a/src-tauri/src/runtime/types.rs +++ b/src-tauri/src/runtime/types.rs @@ -87,6 +87,7 @@ pub enum SkillMessage { reply: tokio::sync::oneshot::Sender>, }, /// Notify the skill of an error from an async operation. + #[allow(dead_code)] Error { error_type: String, message: String, diff --git a/src/store/skillsSlice.ts b/src/store/skillsSlice.ts index b1d7f1f8a..fcf3b2c7a 100644 --- a/src/store/skillsSlice.ts +++ b/src/store/skillsSlice.ts @@ -58,7 +58,10 @@ const skillsSlice = createSlice({ } }, - setSkillOAuthCredential(state, action: PayloadAction<{ skillId: string; credential: OAuthCredential | undefined }>) { + setSkillOAuthCredential( + state, + action: PayloadAction<{ skillId: string; credential: OAuthCredential | undefined }> + ) { const { skillId, credential } = action.payload; if (state.skills[skillId]) { state.skills[skillId].oauthCredential = credential;