Skip to content

Commit

Permalink
chore: dont prefix action types
Browse files Browse the repository at this point in the history
BREAKING CHANGE: we removed `@@starfx:` from all action types
  • Loading branch information
neurosnap committed Feb 7, 2024
1 parent 6396f79 commit e582179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export function* takeLeading<T>(
}
}

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 });
Expand Down

0 comments on commit e582179

Please sign in to comment.