Skip to content

Commit

Permalink
fix invisible empty state
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Oct 21, 2024
1 parent efb895d commit f68564b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
25 changes: 13 additions & 12 deletions calcit.cirru

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions compact.cirru
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,8 @@
div
{} $ :class-name (str-spaced style-message-list)
a $ {}
:inner-text $ turn-str (:model state)
:inner-text $ turn-str
or (:model state) "\"Gemini"
:class-name $ str-spaced style-a-toggler css/font-fancy
:style $ {}
:opacity $ if (= model :anthropic) 1 0.3
Expand Down Expand Up @@ -424,10 +425,8 @@
|submit-message! $ %{} :CodeEntry (:doc |)
:code $ quote
defn submit-message! (cursor state prompt-text model d!) (hint-fn async)
case-default
w-js-log $ :model state
call-gemini-msg! cursor state prompt-text d!
:anthropic $ call-anthropic-msg! cursor state prompt-text d!
case-default (:model state) (call-gemini-msg! cursor state prompt-text d!)
:claude $ call-anthropic-msg! cursor state prompt-text d!
:deepinfra $ call-deepinfra-msg! cursor state prompt-text d!
:ns $ %{} :CodeEntry (:doc |)
:code $ quote
Expand Down

0 comments on commit f68564b

Please sign in to comment.