fix: default to allcategories when search params is not from recommended (#2653)

This commit is contained in:
Rozstone
2024-03-02 17:11:25 +08:00
committed by GitHub
parent 444aba55dd
commit 2001483659
4 changed files with 349 additions and 15 deletions

View File

@@ -23,9 +23,9 @@ export const AppInfo: FC<{ siteInfo: SiteInfo }> = ({ siteInfo }) => {
export const PromptTemplate: FC<{ html: string }> = ({ html }) => {
return (
<div
className={' box-border text-sm text-gray-700'}
className={'box-border text-sm text-gray-700'}
dangerouslySetInnerHTML={{ __html: html }}
></div>
/>
)
}