Skip to content

Commit

Permalink
Fix non-default export template-only formatting
Browse files Browse the repository at this point in the history
ugh
  • Loading branch information
backspace committed Mar 28, 2024
1 parent fafa6fe commit e4cb71f
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions packages/host/app/components/ai-assistant/message/index.gts
Original file line number Diff line number Diff line change
Expand Up @@ -242,18 +242,19 @@ interface AiAssistantConversationSignature {
};
}

const AiAssistantConversation: TemplateOnlyComponent<AiAssistantConversationSignature> = <template>
<div class='ai-assistant-conversation'>
{{yield}}
</div>
<style>
.ai-assistant-conversation {
display: flex;
flex-direction: column;
padding: var(--boxel-sp);
overflow-y: auto;
}
</style>
</template>;
const AiAssistantConversation: TemplateOnlyComponent<AiAssistantConversationSignature> =
<template>
<div class='ai-assistant-conversation'>
{{yield}}
</div>
<style>
.ai-assistant-conversation {
display: flex;
flex-direction: column;
padding: var(--boxel-sp);
overflow-y: auto;
}
</style>
</template>;

export { AiAssistantConversation };

0 comments on commit e4cb71f

Please sign in to comment.