mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-08 22:05:08 -05:00
We have branded it as "Marketplace", so the URL shouldn't be "store". ### Changes 🏗️ - Change frontend URLs from `/store*` to `/marketplace*` - No API route changes to minimize bugs (follow up: https://github.com/Significant-Gravitas/AutoGPT/issues/9118)
8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
"use client";
|
|
|
|
import { redirect } from "next/navigation";
|
|
|
|
export default function Page() {
|
|
redirect("/marketplace");
|
|
}
|