diff --git a/src/components/AnimatedTerminal.astro b/src/components/AnimatedTerminal.astro index 1483bdaa..8b47e42f 100644 --- a/src/components/AnimatedTerminal.astro +++ b/src/components/AnimatedTerminal.astro @@ -1,10 +1,12 @@ --- /** * This is a styled terminal that animates screens of output for demonstration. - * It’s vanilla JavaScript that uses a chain of recursive `setTimeout()` methods - * to append and reset some `innterHTML`. (Avoid `setInterval()`, which may let + * It's vanilla JavaScript that uses a chain of recursive `setTimeout()` methods + * to append and reset some `innerHTML`. (Avoid `setInterval()`, which may let * things drift out of sync!) */ +import { getLatestReleaseVersion } from "../lib/api" +const latestRelease = await getLatestReleaseVersion() --- -