Skip to content

Commit 9b31dd7

Browse files
committed
refactor(context): unify context export naming convention
Updated context exports across multiple modules to use consistent naming by changing from "./context" to "./Context".
1 parent 154a243 commit 9b31dd7

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/renderer/conceptions/AddResource/context/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ export {
77
useSetAddResourceRenderGenerateCharactersDispatch,
88
} from "./useSelectors";
99
export type { TContext, TProviderProps } from "./types";
10-
export * from "./context";
10+
export * from "./Context";

src/renderer/conceptions/AuthSocialNetwork/context/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ export {
55
useSetAuthSocialNetworkAuthenticatedDispatch,
66
} from "./useSelectors";
77
export type { TContext, TProviderProps } from "./types";
8-
export * from "./context";
8+
export * from "./Context";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "./context";
1+
export * from "./Context";

src/renderer/conceptions/TwoFactor/context/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ export {
99
useSetTwoFactorCodeDispatch,
1010
} from "./useSelectors";
1111
export type { TContext, TProviderProps } from "./types";
12-
export * from "./context";
12+
export * from "./Context";

src/renderer/conceptions/UpdateResource/context/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ export {
99
useSetUpdateResourceRenderGenerateCharactersDispatch,
1010
} from "./useSelectors";
1111
export type { TContext, TProviderProps } from "./types";
12-
export * from "./context";
12+
export * from "./Context";

src/renderer/conceptions/Updater/context/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export {
1515
useSetUpdaterUpdateFileDispatch,
1616
} from "./useSelectors";
1717
export type { TContext, TProviderProps } from "./types";
18-
export * from "./context";
18+
export * from "./Context";

src/renderer/conceptions/User/context/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ export {
1111
useSetUserRenderButtonLogoutDispatch,
1212
} from "./useSelectors";
1313
export type { TContext, TProviderProps } from "./types";
14-
export * from "./context";
14+
export * from "./Context";

0 commit comments

Comments
 (0)