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
2 people authored and KAYITARES committed Oct 16, 2023
1 parent ec4eacd commit 4cb0d68
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

0 comments on commit 4cb0d68

Please sign in to comment.