fix: use id for delete button

This commit is contained in:
Anna 2022-07-19 18:58:35 -04:00
parent b9b014bb16
commit 51889b2b1b
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ internal class PluginUi : IDisposable {
} else {
ImGui.TextUnformatted("Clicking the button below will permanently and irreversibly delete your account from ExtraChat's servers.");
if (ImGui.Button("Delete account")) {
if (ImGui.Button("Delete account##actual-delete")) {
Task.Run(async () => await this.Plugin.Client.DeleteAccountToast());
}
}