Skip to content

Commit

Permalink
feat: add project store-manager
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaslangsch committed Aug 7, 2023
1 parent 2ab0b37 commit 528f180
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/context/RepoProvider.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const RepoContext = createContext();

function RepoProvider({ children }) {
const [reposGit, setReposGit] = useState(null);
const [reposTitle, _setReposTitle] = useState(['trivia', 'recipes-app', 'newpace', 'blogs-api']);
const [reposTitle, _setReposTitle] = useState(['trivia', 'recipes-app', 'newpace', 'blogs-api', 'store-manager']);
const ref = useRef();

useEffect(() => {
Expand Down
1 change: 1 addition & 0 deletions src/utils/imagesData.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const images = {
newpace,
'recipes-app': recipes,
'blogs-api': blog,
'store-manager': blog,
}

export default images;

0 comments on commit 528f180

Please sign in to comment.