@unitedstatespowersquadrons/components 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@ interface InitialAppProps<AppState> {
5
5
  children: React.ReactNode;
6
6
  }
7
7
 
8
- export default function buildUnreducableState<AppState>() {
8
+ export default function buildUnreducibleState<AppState>() {
9
9
  const StateContext = createContext<AppState | null>(null);
10
10
 
11
11
  const AppProvider = (props: InitialAppProps<AppState>) => {
package/Reducer/index.tsx CHANGED
@@ -1,4 +1,4 @@
1
1
  export { default as wrapDispatch } from "./wrapDispatch";
2
2
  export { default as buildReducer } from "./buildReducer";
3
- export { default as buildUnreducableState } from "./buildUnreducableState";
3
+ export { default as buildUnreducibleState } from "./buildUnreducibleState";
4
4
  export type * from "./types";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unitedstatespowersquadrons/components",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "USPS shared React components library",
5
5
  "main": "index.tsx",
6
6
  "scripts": {