Gota.io hide error banner

hides error banner on top of the screen

// ==UserScript==
// @name         Gota.io hide error banner
// @namespace    http://tampermonkey.net/
// @version      1
// @description  hides error banner on top of the screen
// @author       yl3
// @match        https://gota.io/web/*
// @license MIT
// @grant        none
// ==/UserScript==

var style = document.createElement('style');
style.innerHTML = ".error-banner { visibility: hidden; }";
document.body.appendChild(style);