When filtering object members from rest use full name

GitOrigin-RevId: 0c21c70b2512931744f18e79c8d9e4bb85e83dfa
This commit is contained in:
andrew rumble
2025-06-11 08:06:05 +00:00
committed by Copybot
parent f871130773
commit 52280febf6
@@ -89,7 +89,7 @@ export const ThreadsProvider: FC<React.PropsWithChildren> = ({ children }) => {
) => {
setData(value => {
if (value) {
const { submitting: _1, ...thread } = value[threadId] ?? {
const { submitting: _submitting, ...thread } = value[threadId] ?? {
messages: [],
}