fix: renumber chat goal migration after rebase

This commit is contained in:
Michael Suchacz
2026-05-27 18:06:21 +00:00
parent a20f6605e7
commit 6813ccd368
5 changed files with 6 additions and 4 deletions
+4 -4
View File
@@ -937,10 +937,10 @@ const AgentChatPage: FC = () => {
const chatAuthorizationObject =
chatRecord !== undefined
? {
resource_type: "chat" as const,
owner_id: chatRecord.owner_id,
organization_id: chatRecord.organization_id,
}
resource_type: "chat" as const,
owner_id: chatRecord.owner_id,
organization_id: chatRecord.organization_id,
}
: undefined;
const chatAuthorizationChecks: TypesGen.AuthorizationRequest["checks"] = {};
if (chatAuthorizationObject !== undefined && shouldCheckCanShareChat) {
@@ -187,6 +187,8 @@ const StoryAgentChatPageView: FC<StoryProps> = ({ editing, ...overrides }) => {
>["selectedMCPServerIds"],
onMCPSelectionChange: fn(),
onMCPAuthComplete: fn(),
canUpdateOtherUserChat: false,
canUpdateOtherUserChatLoading: false,
canShareChat: false,
...overrides,
store,