1
0

fix: Enum flag parsing
Remote Deploy / deploy (push) Successful in 1m24s

This commit is contained in:
2026-06-19 09:43:02 +02:00
parent 5100db2b35
commit c312885022
+2 -1
View File
@@ -12,6 +12,7 @@
* GNU General Public License for more details. * GNU General Public License for more details.
*/ */
import "dotenv/config"
const API_BASE_URL = process.env.ANNOUNCEMENT_API || "http://localhost:3000"; const API_BASE_URL = process.env.ANNOUNCEMENT_API || "http://localhost:3000";
export type Announcement = { export type Announcement = {
@@ -25,7 +26,7 @@ export type Announcement = {
}; };
export enum Flag { export enum Flag {
SHOW_ALL_ENTRIES SHOW_ALL_ENTRIES = "SHOW_ALL_ENTRIES"
} }
export type AnnouncementResponse = { export type AnnouncementResponse = {