From e5821798adaf39b6f2578fdc96aca714844819f1 Mon Sep 17 00:00:00 2001 From: Eric Bower Date: Wed, 7 Feb 2024 10:46:44 -0500 Subject: [PATCH] chore: dont prefix action types BREAKING CHANGE: we removed `@@starfx:` from all action types --- action.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.ts b/action.ts index 4de293a..1f9f464 100644 --- a/action.ts +++ b/action.ts @@ -103,7 +103,7 @@ export function* takeLeading( } } -export const API_ACTION_PREFIX = "@@starfx:"; +export const API_ACTION_PREFIX = ""; export const createAction = (type: string) => { if (!type) throw new Error("createAction requires non-empty string"); const action = () => ({ type });