Skip to content

Commit

Permalink
Merge pull request #102 from Phuire-Research/UI
Browse files Browse the repository at this point in the history
Axium close payload
  • Loading branch information
REllEK-IO committed Oct 19, 2023
2 parents 95c2150 + 341841d commit 0c20456
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@phuire/strx",
"version": "0.0.38",
"version": "0.0.39",
"description": "Unified Turing Machine",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/concepts/axium/qualities/close.quality.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type ClosePayload = {
exit: boolean
};
export const axiumCloseType: ActionType = 'Close Axium';
export const axiumClose = prepareActionWithPayloadCreator(axiumCloseType);
export const axiumClose = prepareActionWithPayloadCreator<ClosePayload>(axiumCloseType);

export function closeReducer(state: AxiumState, _action: Action): AxiumState {
const {exit} = selectPayload<ClosePayload>(_action);
Expand Down

0 comments on commit 0c20456

Please sign in to comment.