This commit is contained in:
2023-09-29 13:19:06 +10:00
parent dbab224a9d
commit b445a42896

View File

@@ -40,7 +40,7 @@
<button
role="button"
class="font-medium block w-full md:inline-block md:w-auto px-6 py-1.5 rounded-md hover:shadow-md transition text-sm bg-sky-600 hover:bg-sky-500 text-white cursor-pointer"
@click="handleLoad()">
@click="handleReload()">
Retry
</button>
<button
@@ -191,5 +191,9 @@ const handleLoad = async () => {
}
};
const handleReload = () => {
window.location.reload();
};
handleLoad();
</script>