This commit is contained in:
2026-01-25 17:00:37 -07:00
parent 10a614f190
commit d76d5828d1
3 changed files with 137 additions and 137 deletions

View File

@@ -217,7 +217,7 @@ public class ChatroomMenu : MonoBehaviour
Destroy(editMessage);
optionsPanel.SetActive(true);
});
editMessageChildSubmitButton.onClick.AddListener(async () =>
editMessageChildSubmitButton.onClick.AddListener(() =>
{
HandleMessageEdit();
editMessagePanelCurrent = null;

View File

@@ -25,5 +25,5 @@ public class Endpoints
public const string ACCOUNT_CHANGE_PASSWORD_ENDPOINT = ACCOUNT_ENDPOINT + "/change-password";
public const string ACCOUNT_FORGOT_USERNAME_ENDPOINT = BASE_URL + "/account/forgot-username";
public const string ACCOUNT_FORGOT_PASSWORD_ENDPOINT = BASE_URL + "/account/forgot-password";
public const string CHATROOM_REPORT_MESSAGE_ENDPOINT = BASE_URL + "/chatroom/report";
public const string CHATROOM_REPORT_MESSAGE_ENDPOINT = BERRYDASH_ENDPOINT + "/chatroom/report";
}