Worked on several new features:

- ProfilePictures for users are now pulled from the backend
- added a component for chat settings (WIP)
- added a loading screen when the backend is not available
- reworked the "add chat" feature
- started to implement the general send-message functionality
This commit is contained in:
joschuatonn
2024-05-25 13:37:50 +02:00
parent 176abf58b2
commit c8d5bc5734
12 changed files with 486 additions and 86 deletions

View File

@@ -70,3 +70,8 @@ export interface tenorResponseElement {
export interface tenorResponse {
results: Array<tenorGif>,
}
export interface profilePicture {
shortName: string;
url: string;
}