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. +

) }