We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43840fa commit 06ef12eCopy full SHA for 06ef12e
src/components/ModelCatalog.jsx
@@ -184,6 +184,15 @@ const ModelCatalog = ({ models }) => {
184
</div>
185
186
<div className="flex md:w-3/4 w-full gap-[1%] items-stretch self-start flex-wrap !mt-0">
187
+ {modelList.length === 0 && (
188
+ <div className="border bg-gray-50 rounded-md w-full flex-col flex align-middle justify-center text-center py-6">
189
+ <span className="text-lg !font-bold">No models found</span>
190
+ <p>
191
+ Try a different search term, or broaden your search by removing
192
+ filters.
193
+ </p>
194
+ </div>
195
+ )}
196
{modelList.map((model) => {
197
const isBeta = model.model.properties.find(
198
({ property_id, value }) =>
0 commit comments