From 0a24c009ada68473d111a4007b117be01079f722 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 5 Jan 2021 16:59:52 -0700 Subject: [PATCH] Use the provided message and not a hardcoded value --- web/src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/App.vue b/web/src/App.vue index 4aa0092..e7a1d48 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -95,7 +95,7 @@ export default { this.handleError(data); } else { this.alert = { - message: `The game has been ended by the host.`, + message: data.message, type: `info`, }; this.$store.commit(`resetState`);