diff --git a/src/components/SessionCard.vue b/src/components/SessionCard.vue
index 620e19b..fa400d4 100644
--- a/src/components/SessionCard.vue
+++ b/src/components/SessionCard.vue
@@ -78,7 +78,7 @@ const diskPercentageNumber = computed(() => {
@@ -105,9 +105,9 @@ const diskPercentageNumber = computed(() => {
-import { computed } from 'vue';
import { storeToRefs } from 'pinia';
import { useWebSocket } from '../composables/useWebSocket';
import SessionCard from '../components/SessionCard.vue';
import { useStore } from '../stores/store';
const store = useStore();
-const { sessions, isLoading, reminderSessions } = storeToRefs(store);
+const { sessions, isLoading } = storeToRefs(store);
useWebSocket();
-
-// Compute se há alertas
-const hasSessionAlerts = computed(() => reminderSessions.value);
diff --git a/vite.config.ts b/vite.config.ts
index e0bba4d..a35fd91 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -5,7 +5,7 @@ import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [vue()],
server: {
- port: 3334,
+ port: 3333,
host: '0.0.0.0',
},
});