Fix warnings and update tracability
🏗️ Build and Test JellyTau / Run Tests (push) Failing after 14s
🏗️ Build and Test JellyTau / Build Android APK (push) Has been skipped
Traceability Validation / Check Requirement Traces (push) Failing after 1s

This commit is contained in:
2026-02-28 20:54:25 +01:00
parent c5be9eb18c
commit 3a9c126dfe
59 changed files with 1285 additions and 396 deletions
+7 -2
View File
@@ -145,10 +145,10 @@ function createQueueStore() {
// Get repository handle from auth store
const authState = get(auth);
if (!authState.isAuthenticated || !authState.repository) {
if (!authState.isAuthenticated) {
throw new Error("User not authenticated");
}
const repositoryHandle = authState.repository.getHandle();
const repositoryHandle = auth.getRepository().getHandle();
// Use new Rust commands that accept IDs only
if (trackIds.length === 1) {
@@ -170,6 +170,10 @@ function createQueueStore() {
}
}
async function clear() {
set(initialState);
}
return {
subscribe,
next,
@@ -182,6 +186,7 @@ function createQueueStore() {
moveInQueue,
syncFromRust,
cleanup,
clear,
};
}