Skip to content

Commit d164c7e

Browse files
authored
Merge branch 'develop' into develop
2 parents 0c72d11 + 7dd5cab commit d164c7e

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

client/src/components/ui/chat/chat-bubble.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,7 @@ const ChatBubbleMessage = React.forwardRef<
125125
ChatBubbleMessage.displayName = "ChatBubbleMessage";
126126

127127
// ChatBubbleTimestamp
128-
interface ChatBubbleTimestampProps
129-
extends React.HTMLAttributes<HTMLDivElement> {
128+
interface ChatBubbleTimestampProps extends React.HTMLAttributes<HTMLDivElement> {
130129
timestamp: string;
131130
}
132131

client/version.sh

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@
44
LERNA_FILE="../lerna.json"
55

66
# Check if lerna.json exists
7-
if [ ! -f "$LERNA_FILE" ]; then
8-
echo "Error: $LERNA_FILE does not exist."
7+
if [ ! -f "${LERNA_FILE}" ]; then
8+
echo "Error: ${LERNA_FILE} does not exist."
9+
exit 1
10+
fi
11+
12+
# Check if we have write permissions to the destination directory
13+
if [ ! -w "src/lib" ]; then
14+
echo "Error: No write permission to src/lib directory."
915
exit 1
1016
fi
1117

@@ -22,4 +28,4 @@ fi
2228
echo "{\"version\": \"$VERSION\"}" > src/lib/info.json
2329

2430
# Confirm success
25-
echo "info.json created with version: $VERSION"
31+
echo "info.json created with version: $VERSION"

packages/plugin-tts/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ Special thanks to:
166166

167167
For more information about TTS capabilities:
168168
- [FAL.ai Documentation](https://fal.ai/docs)
169-
- [ElizaOS Documentation](https://docs.elizaos.com)
169+
- [ElizaOS Documentation](https://elizaos.github.io/eliza/)
170170

171171
## License
172172

173-
This plugin is part of the Eliza project. See the main project repository for license information.
173+
This plugin is part of the Eliza project. See the main project repository for license information.

0 commit comments

Comments
 (0)