feat:v1.0.0
This commit is contained in:
@@ -17,7 +17,7 @@ export default function Characters() {
|
||||
});
|
||||
|
||||
if (error) {
|
||||
return <div>Error loading characters: {(error as Error).message}</div>;
|
||||
return <div>加载角色卡失败:{(error as Error).message}</div>;
|
||||
}
|
||||
|
||||
return (
|
||||
@@ -33,16 +33,16 @@ export default function Characters() {
|
||||
<Main className='flex flex-1 flex-col gap-4 sm:gap-6'>
|
||||
<div className='flex flex-wrap items-end justify-between gap-2'>
|
||||
<div>
|
||||
<h2 className='text-2xl font-bold tracking-tight'>Characters</h2>
|
||||
<h2 className='text-2xl font-bold tracking-tight'>角色卡</h2>
|
||||
<p className='text-muted-foreground'>
|
||||
Manage your AI characters and their configurations.
|
||||
管理你的 AI 角色卡与相关配置。
|
||||
</p>
|
||||
</div>
|
||||
<CharactersPrimaryButtons />
|
||||
</div>
|
||||
|
||||
{isLoading ? (
|
||||
<div>Loading...</div>
|
||||
<div>加载中...</div>
|
||||
) : (
|
||||
<CharactersTable data={characters || []} />
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user