Skip to content

Commit

Permalink
Update fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sajeetharan committed Oct 9, 2024
1 parent 4c1e645 commit 6e45c70
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
28 changes: 14 additions & 14 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,22 +141,22 @@ const config = {
],
],

// CONFIG: Set presets for chosen theme
presets: [
[
'@docusaurus/preset-classic',
{
gtag: {
trackingID: 'UA-141789564-1',
anonymizeIP: true,
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
// CONFIG: Set presets for chosen theme
presets: [
[
'@docusaurus/preset-classic',
{
gtag: {
trackingID: 'UA-141789564-1',
anonymizeIP: true,
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
}
}
}

],
],
],

};

module.exports = config;
2 changes: 1 addition & 1 deletion src/components/gallery/ShowcaseCardPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function ShowcaseCardPanel({
user: User;
githubData: { forks: number; stars: number; updatedOn: Date };
}) {
const githubURL = user.source.toLowerCase();
const githubURL = user.source;
const title = user.title;
const description = user.description;
const video = user.video;
Expand Down

0 comments on commit 6e45c70

Please sign in to comment.