Skip to content

Commit

Permalink
Try to fix check_release workflow (3rd), and fix a missing type
Browse files Browse the repository at this point in the history
  • Loading branch information
brichet committed Mar 25, 2024
1 parent 0f38dbf commit 10a49b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/jupyter-chat/src/components/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function ChatBody({
setMessages([]);
return;
} else if (message.type === 'msg') {
setMessages(messageGroups => [...messageGroups, message]);
setMessages((messageGroups: IMessage[]) => [...messageGroups, message]);
}
}

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ python_packages = [
[tool.jupyter-releaser.hooks]
before-build-npm = [
"python -m pip install 'jupyterlab>=4.0.0,<5'",
"jlpm",
"YARN_ENABLE_IMMUTABLE_INSTALLS=0 jlpm",
"jlpm build:prod"
]
before-build-python = ["jlpm clean:all"]
Expand Down

0 comments on commit 10a49b6

Please sign in to comment.