Fix the ability to mark communications signal/noise

This commit is contained in:
Eli Ribble 2026-03-22 04:53:50 +00:00
parent 978c20d72a
commit 22c2df11f8
No known key found for this signature in database
2 changed files with 8 additions and 9 deletions

View file

@ -1,10 +1,11 @@
import { defineStore } from "pinia";
import { ref, computed } from "vue";
import { useUserStore } from "./user";
import { Communication } from "../types";
export const useCommunicationStore = defineStore("communication", () => {
// State
const all = ref(null);
const all = ref<Communication[] | null>(null);
const loading = ref(false);
const error = ref(null);