Skip to content

Commit

Permalink
Merge pull request #1795 from cardstack/cs-7454-assistant-thinking-an…
Browse files Browse the repository at this point in the history
…imation-pulsates-with-more-than-one

Use `{{#each}}` key to provide component stability for `AiAssistantPastSessionsList`
  • Loading branch information
habdelra authored Nov 13, 2024
2 parents a7d4a87 + 90aea70 commit 9c54568
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const AiAssistantPastSessionsList: TemplateOnlyComponent<Signature> = <template>
<:body>
{{#if @sessions}}
<ul class='past-sessions'>
{{#each @sessions as |session|}}
{{#each @sessions key='roomId' as |session|}}
<PastSessionItem @session={{session}} @actions={{@roomActions}} />
{{/each}}
</ul>
Expand Down

0 comments on commit 9c54568

Please sign in to comment.