Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
targets: aarch64-linux-android,armv7-linux-androideabi,x86_64-linux-android,i686-linux-android

- name: Setup Android NDK
uses: nttld/setup-ndk@v1
uses: nttld/setup-ndk@v1.5.0
id: setup-ndk
with:
ndk-version: r27c
Expand Down
10 changes: 5 additions & 5 deletions frontend/src/components/markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,16 @@ export function ThinkingBlock({ content, isThinking, duration }: ThinkingBlockPr
<Brain className="h-4 w-4 text-gray-500 dark:text-gray-400" />
<span className="text-sm text-gray-600 dark:text-gray-300 font-medium">
{isThinking ? (
<span className="flex items-center gap-2">
<span className="inline-flex items-center gap-2">
Thinking for {durationText} seconds
<span className="flex gap-1">
<span className="animate-bounce" style={{ animationDelay: "0ms" }}>
<span className="inline-flex gap-1 items-baseline">
<span className="animate-bounce inline-block" style={{ animationDelay: "0ms" }}>
.
</span>
<span className="animate-bounce" style={{ animationDelay: "150ms" }}>
<span className="animate-bounce inline-block" style={{ animationDelay: "150ms" }}>
.
</span>
<span className="animate-bounce" style={{ animationDelay: "300ms" }}>
<span className="animate-bounce inline-block" style={{ animationDelay: "300ms" }}>
.
</span>
</span>
Expand Down
Loading