Skip to content

Commit

Permalink
Update cover image (#308)
Browse files Browse the repository at this point in the history
* bug(fixing TTL Page): Removing literal string (#297)

- use enum instead of literal string

* Update Resume.tsx

---------

Co-authored-by: AbdoulKhaliq <[email protected]>
  • Loading branch information
Muhet and AbdulKhaliq59 authored Oct 13, 2023
1 parent ec4eacd commit 626dc20
Show file tree
Hide file tree
Showing 5 changed files with 416 additions and 385 deletions.
4 changes: 2 additions & 2 deletions src/components/ProfileCoverpage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function ProfileCoverpage({
formData.append('upload_preset', 'my_upload');

const avatar = await axios.post(
'https://api.cloudinary.com/v1_1/dj24yfas5/image/upload',
`${process.env.COVER_IMAGE_URL}`,
formData,
);
/* istanbul ignore next */
Expand Down Expand Up @@ -97,7 +97,7 @@ export default function ProfileCoverpage({
formData.append('upload_preset', 'my_upload');

const cover = await axios.post(
'https://api.cloudinary.com/v1_1/dta2axdpw/image/upload',
`${process.env.COVER_IMAGE_URL}`,
formData,
);
/* istanbul ignore next */
Expand Down
Loading

1 comment on commit 626dc20

@vercel
Copy link

@vercel vercel bot commented on 626dc20 Oct 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

metron-devpulse – ./

metron-devpulse.vercel.app
metron-devpulse-metron.vercel.app
metron-devpulse-git-develop-metron.vercel.app

Please sign in to comment.