From fb97cd2c9e6d058168d3b60ec70b1a10287febe5 Mon Sep 17 00:00:00 2001 From: geek Date: Thu, 14 Sep 2017 14:42:07 +0900 Subject: [PATCH] rest call --- src/ts/@overflow/app/config/index.ts | 2 +- src/ts/@overflow/member/react/components/ResetPassword.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ts/@overflow/app/config/index.ts b/src/ts/@overflow/app/config/index.ts index dab8d26..ab679a5 100644 --- a/src/ts/@overflow/app/config/index.ts +++ b/src/ts/@overflow/app/config/index.ts @@ -70,7 +70,7 @@ export interface RPCConfig { url: string; } const rpcConfig: RPCConfig = { - url: 'ws://192.168.1.50:19090/web', + url: 'ws://192.168.1.103:19090/web', }; // REST Server Configuration diff --git a/src/ts/@overflow/member/react/components/ResetPassword.tsx b/src/ts/@overflow/member/react/components/ResetPassword.tsx index b225821..a6d1b03 100644 --- a/src/ts/@overflow/member/react/components/ResetPassword.tsx +++ b/src/ts/@overflow/member/react/components/ResetPassword.tsx @@ -13,7 +13,7 @@ export interface StateProps { } export interface DispatchProps { - onResetPassword?(pw:string, key:string); + onResetPassword ?(pw:string, key:string):void; } export type Props = StateProps & DispatchProps;