Fix mutation after disposal in `TeamEditorScreen`

This commit is contained in:
Dean Herbert 2022-07-12 12:59:55 +09:00
parent f7f0546f2a
commit 76be9a829c
1 changed files with 2 additions and 2 deletions

View File

@ -298,10 +298,10 @@ private void load()
}, true);
}
private void updatePanel()
private void updatePanel() => Scheduler.AddOnce(() =>
{
drawableContainer.Child = new UserGridPanel(user.ToAPIUser()) { Width = 300 };
}
});
}
}
}