From 224621d9a5910745c3ae68a6fa14e153b1de5cda Mon Sep 17 00:00:00 2001 From: Aarnav Tale Date: Sat, 30 Mar 2024 04:47:46 -0400 Subject: [PATCH] fix: actions needs ghcr.io --- .github/workflows/publish.yaml | 2 +- app/routes/_data.settings._index.tsx | 19 +++++++------------ 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 3ec7598..bdfd976 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -21,7 +21,7 @@ jobs: - name: Log in to Docker Hub uses: docker/login-action@v3 with: - registry: ${{ env.REGISTRY }} + registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} diff --git a/app/routes/_data.settings._index.tsx b/app/routes/_data.settings._index.tsx index 10844e9..549f746 100644 --- a/app/routes/_data.settings._index.tsx +++ b/app/routes/_data.settings._index.tsx @@ -1,18 +1,13 @@ -import { useLoaderData } from '@remix-run/react' - -import { getConfig } from '~/utils/config' - -export async function loader() { - const config = await getConfig() - return config -} +import { CubeTransparentIcon } from '@heroicons/react/24/outline' export default function Page() { - const data = useLoaderData() - return ( -
- {JSON.stringify(data, null, 4)} +
+ +

+ The settings page is currently unavailable. + It will be available in a future release. +

) }