Commit daa6086

HPCesia <me@hpcesia.com>
2025-02-09 14:57:50
fix: unremoved algolia import
1 parent 6652264
Changed files (1)
src
components
src/components/Search.astro
@@ -1,6 +1,5 @@
 ---
 import { searchConfig } from '@/config';
-import Algolia from './search/Algolia.astro';
 import Pagefind from './search/Pagefind.astro';
 ---
 
@@ -15,8 +14,6 @@ import Pagefind from './search/Pagefind.astro';
           switch (searchConfig.provider) {
             case 'pagefind':
               return <Pagefind />;
-            case 'algolia':
-              return <Algolia />;
           }
         })()
       }