oops, fix build err
All checks were successful
Deploy Frontend / docker (17, 3.8.5) (push) Successful in 1m0s

This commit is contained in:
Braydon 2024-04-19 11:36:31 -04:00
parent d46fd443d4
commit 98adb3d22d

@ -111,13 +111,11 @@ export const generateMetadata = async ({
if (code === 400) { if (code === 400) {
return Embed({ return Embed({
title: "Invalid Platform or Hostname", title: "Invalid Platform or Hostname",
color: "#EB4034",
description: `The platform ${platform} or hostname ${hostname} is invalid.`, description: `The platform ${platform} or hostname ${hostname} is invalid.`,
}); });
} else if (code === 404) { } else if (code === 404) {
return Embed({ return Embed({
title: "Server Not Found", title: "Server Not Found",
color: "#EB4034",
description: `The server ${hostname} was not found.`, description: `The server ${hostname} was not found.`,
}); });
} }