Skip to content

Commit

Permalink
Fix docs errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thatmattlove committed May 30, 2021
1 parent 622f48c commit 231443f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,6 @@ const docusaurusConfig = {
projectName: "hyperglass",
themeConfig: {
image: "opengraph.jpg",
googleAnalytics: {
trackingID: googleTrackingId || " ",
anonymizeIP: false,
},
algolia: {
apiKey: algoliaKey || "dev",
indexName: "hyperglass",
Expand Down
8 changes: 4 additions & 4 deletions docs/src/hooks/useLogoSrc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ export function useLogoSrc(): UseLogoSrc {
className = "logo-at-home";
}
const sourcesIcon = {
light: useBaseUrl("/static/hyperglass-icon-light.svg"),
dark: useBaseUrl("/static/hyperglass-icon-dark.svg"),
light: useBaseUrl("hyperglass-icon-light.svg"),
dark: useBaseUrl("hyperglass-icon-dark.svg"),
};

const sourcesFull = {
light: useBaseUrl("/static/hyperglass-light.svg"),
dark: useBaseUrl("/static/hyperglass-dark.svg"),
light: useBaseUrl("hyperglass-light.svg"),
dark: useBaseUrl("hyperglass-dark.svg"),
};

const sources = useMemo(() => {
Expand Down

0 comments on commit 231443f

Please sign in to comment.