import { Import } from 'lucide-react' import { Button } from 'ui' import { FeatureBanner } from '@/components/ui/FeatureBanner' export const StartUsingJwtSigningKeysBanner = ({ onClick, isLoading, }: { onClick: () => void isLoading: boolean }) => { return (

Start using JWT signing keys

Right now your project is using the legacy JWT secret. To start taking advantage of the new JWT signing keys, migrate your project's secret to the new set up.

) }