diff options
author | AutumnVN <autumnvnchino@gmail.com> | 2023-09-19 09:10:15 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-19 04:10:15 +0200 |
commit | efb88a4df8037fc1394a9e2053c49e75d340f401 (patch) | |
tree | e7284b0ecaa0205bb7b67eceadb789de02e4680f | |
parent | a73d09a2f0d2adc7ff56e6f6004cd6ec50e202e9 (diff) | |
download | Vencord-efb88a4df8037fc1394a9e2053c49e75d340f401.tar.gz Vencord-efb88a4df8037fc1394a9e2053c49e75d340f401.tar.bz2 Vencord-efb88a4df8037fc1394a9e2053c49e75d340f401.zip |
favGifSearch: fix search bar (#1732)
-rw-r--r-- | src/plugins/favGifSearch/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/favGifSearch/index.tsx b/src/plugins/favGifSearch/index.tsx index d10c515..d2966e9 100644 --- a/src/plugins/favGifSearch/index.tsx +++ b/src/plugins/favGifSearch/index.tsx @@ -60,7 +60,7 @@ interface Instance { } -const containerClasses: { searchBar: string; } = findByPropsLazy("searchBar", "searchHeader", "gutterSize"); +const containerClasses: { searchBar: string; } = findByPropsLazy("searchBar", "searchHeader", "searchInput"); export const settings = definePluginSettings({ searchOption: { |