Skip to content

Commit

Permalink
☔ Adds typing to joint name store
Browse files Browse the repository at this point in the history
  • Loading branch information
runeharlyk committed Nov 8, 2024
1 parent 6ce4747 commit a3fc3ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/lib/stores/model-store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { writable, type Writable } from 'svelte/store';

export const emulateModel = writable(true);

export const jointNames = persistentStore('joint_names', []);
export const jointNames = persistentStore('joint_names', <string[]>[]);

export const model = writable();

Expand Down

0 comments on commit a3fc3ec

Please sign in to comment.