Skip to content

Commit

Permalink
Fix formating
Browse files Browse the repository at this point in the history
  • Loading branch information
milesha committed Dec 1, 2024
1 parent 2faceb2 commit f2b5d4c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ <h2 class="text-center text-xl text-gray-700 font-semibold max-w-3xl dark:text-w
Meet Your Personal AI Mentor – designed to help you grow faster through focused and reflective learning sessions. Click below to begin!
</h2>

<a hlmBtn aria-describedby="Start First Session" class="bg-cyan-500 text-white p-4 rounded-lg hover:bg-cyan-600 cursor-pointer" (click)="handleCreateSession()">Start First Session</a>
<a hlmBtn aria-describedby="Start First Session" class="bg-cyan-500 text-white p-4 rounded-lg hover:bg-cyan-600 cursor-pointer" (click)="handleCreateSession()"
>Start First Session</a
>
</div>
2 changes: 1 addition & 1 deletion webapp/src/app/chat/messages/messages.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class MessagesComponent implements OnInit, AfterViewChecked {
this.chatMessagesContainer.nativeElement.scrollTop = this.chatMessagesContainer.nativeElement.scrollHeight;
}
} catch (err) {
return;
console.error(err);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class SessionsCardComponent {
protected Plus = Plus;

sessions = input<Session[]>();
activeSessionId = input<number|null>();
activeSessionId = input<number | null>();

sessionSelected = output<number>();
createSession = output();
Expand Down

0 comments on commit f2b5d4c

Please sign in to comment.