Skip to content

Commit 5fbd59e

Browse files
committed
fixed website search modal
1 parent f597b4c commit 5fbd59e

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

website/gatsby-config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = {
1111
bcp: `https://eat.bananacakepop.com`,
1212
github: `https://github.com/ChilliCream/hotchocolate`,
1313
shop: `https://store.chillicream.com`,
14-
slack: `http://slack.chillicream.com/`,
14+
slack: `https://slack.chillicream.com/`,
1515
twitter: `https://twitter.com/Chilli_Cream`,
1616
youtube: `https://www.youtube.com/c/ChilliCream`,
1717
},

website/gatsby-node.js

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ const { createFilePath } = require("gatsby-source-filesystem");
22
const path = require("path");
33
const git = require("simple-git/promise");
44

5+
/** @type import('gatsby').GatsbyNode["createPages"] */
56
exports.createPages = async ({ actions, graphql, reporter }) => {
67
const { createPage, createRedirect } = actions;
78

website/src/components/misc/search-modal.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ export const SearchModal: FC<SearchModalProps> = ({
3333
{open
3434
? createPortal(
3535
<DocSearchModal
36-
appId="BH4D9OD16A"
37-
apiKey="3ed63973f167d1fc290b9a1aaa85a793"
36+
appId="WQ7ZRCU9RS"
37+
apiKey="b40ebfd92eb180185aa52c192e4fbd86"
3838
indexName="chillicream"
3939
placeholder="Search..."
4040
hitComponent={resolveHit}

0 commit comments

Comments
 (0)