fix: update search placeholder text in SearchBoxWrapper for clarity in marketplace

This commit is contained in:
yessenia
2026-02-11 12:51:27 +08:00
parent 5f6f9ed517
commit 8e788714e4

View File

@@ -91,7 +91,7 @@ const SearchBoxWrapper = ({
className={cn('h-9 bg-components-input-bg-normal', inputClassName)}
showLeftIcon
value={inputValue}
placeholder={t('searchPlugins', { ns: 'plugin' })}
placeholder={t('searchInMarketplace', { ns: 'plugin' })}
onChange={(e) => {
setDraftSearch(e.target.value)
}}