Skip to content

Commit

Permalink
feat(MyProfile): include link to MyTransfers
Browse files Browse the repository at this point in the history
  • Loading branch information
joseglego committed Nov 4, 2024
1 parent 4ff44e1 commit 1666032
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/components/Profile/MyProfile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ export const MyProfile = () => {
{[
["Configuración", urls.profile.editInfo],
["Mis Ordenes de Compra", urls.myOrders.root],
["Mis eventos", urls.myEvents.root],
["Mis Eventos", urls.myEvents.root],
["Mis Transferencias", urls.myTransfers],
].map(([text, link], index) => (
<li key={index}>
<Link to={link} className="text-base underline">
Expand Down
1 change: 1 addition & 0 deletions app/components/Profile/MyProfileLoadingSkeleton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const LoadingCard = () => {
<Skeleton className="h-6 w-40" />
<Skeleton className="h-6 w-64" />
<Skeleton className="h-6 w-40" />
<Skeleton className="h-6 w-48" />
</div>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions app/utils/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const urls = {
root: "/my-orders",
callback: "/my-orders/callback",
},
myTransfers: "/my-transfers",
comunidades: "/comunidades",
tickets: {
root: "/tickets",
Expand Down

0 comments on commit 1666032

Please sign in to comment.