Skip to content

Commit

Permalink
Fix the contributors section
Browse files Browse the repository at this point in the history
  • Loading branch information
mertyildiran committed Nov 15, 2022
1 parent cb6a093 commit 3c48c50
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/Footer/AvatarList.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ type Props = {
path: string;
};
const { path } = Astro.props as Props;
const resolvedPath = `examples/docs/${path}`;
const url = `https://api.github.com/repos/kubeshark/docs/commits?path=${resolvedPath}`;
const commitsURL = `https://github.com/kubeshark/docs/commits/master/${resolvedPath}`;
const url = `https://api.github.com/repos/kubeshark/docs/commits?path=${path}`;
const commitsURL = `https://github.com/kubeshark/docs/commits/master/${path}`;
type Commit = {
author: {
Expand Down

0 comments on commit 3c48c50

Please sign in to comment.