We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68b5ad3 commit 4cf4878Copy full SHA for 4cf4878
frontend/magic-web/src/opensource/layouts/BaseLayout/styles.ts
@@ -32,7 +32,7 @@ export const useStyles = createStyles(
32
subSider: {},
33
content: css`
34
width: calc(100% - var(--sider-width));
35
- height: 100%;
+ height: calc(100% - 44px);
36
`,
37
}
38
},
frontend/magic-web/src/opensource/pages/superMagic/utils/api.ts
@@ -132,7 +132,7 @@ export const getMessagesByConversationId = async ({
132
page_token?: string
133
}): Promise<any> => {
134
return magicClient.post(
135
- `/api/v1/im/conversations/${conversation_id}/messages/queries`,
+ `/api/v2/magic/conversations/${conversation_id}/message/queries`,
136
{
137
limit,
138
order,
0 commit comments