Skip to content

Commit

Permalink
fix: setUserInfo service api not found (#898)
Browse files Browse the repository at this point in the history
  • Loading branch information
luhc228 authored Jul 7, 2021
1 parent 0d8ae22 commit 48bce34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions extensions/project-creator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 1.0.3

- feat: support double click to select scaffold. [#872](https://github.com/appworks-lab/pack/issues/872)
- fix: service api(setUserInfo) not found

## 1.0.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ const CreateProject: React.FC = () => {
...curProjectField,
clientToken: CLIENT_TOKEN,
});
await callService('common', 'saveUserInfo', { empId, account, gitlabToken });
await callService('user', 'saveUserInfo', { empId, account, gitlabToken });
await callService('common', 'saveDataToSettingJson', 'workspace', projectPath);
await callService('project', 'openLocalProjectFolder', projectDir);
} catch (e) {
Expand Down

0 comments on commit 48bce34

Please sign in to comment.