Remove unnecessary extensions

This commit is contained in:
Adria Navarro 2025-01-10 15:22:34 +01:00
parent 3518d2ada2
commit 9d0e3a1722
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import { API } from "./api.ts" import { API } from "./api"
import { patchAPI } from "./patches.js" import { patchAPI } from "./patches"
// Certain endpoints which return rows need patched so that they transform // Certain endpoints which return rows need patched so that they transform
// and enrich the row docs, so that they can be correctly handled by the // and enrich the row docs, so that they can be correctly handled by the

View File

@ -1,6 +1,6 @@
export { authStore } from "./auth" export { authStore } from "./auth"
export { appStore } from "./app" export { appStore } from "./app"
export { notificationStore } from "./notification.ts" export { notificationStore } from "./notification"
export { routeStore } from "./routes" export { routeStore } from "./routes"
export { screenStore } from "./screens" export { screenStore } from "./screens"
export { builderStore } from "./builder" export { builderStore } from "./builder"