Skip to content

Commit

Permalink
Merge pull request #116 from Trustless-Work/feat/implement-joyride
Browse files Browse the repository at this point in the history
Feat/implement joyride
  • Loading branch information
JoelVR17 authored Feb 25, 2025
2 parents 6f87f2d + 142f2d7 commit 2723e2e
Show file tree
Hide file tree
Showing 12 changed files with 404 additions and 145 deletions.
132 changes: 130 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"react-day-picker": "^9.4.4",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"react-joyride": "^2.9.3",
"react-loader-spinner": "^6.1.6",
"react-qr-code": "^2.0.15",
"react-syntax-highlighter": "^15.6.1",
Expand Down
1 change: 1 addition & 0 deletions src/components/layout/header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ const Header = () => {

<div className="flex gap-5 ml-auto">
<ThemeToggle />

<button
type="button"
onClick={handleDisconnect}
Expand Down
2 changes: 1 addition & 1 deletion src/components/modules/escrow/ui/cards/MyEscrowsCards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const MyEscrowsCards = ({ type }: MyEscrowsCardsProps) => {
{loadingEscrows ? (
<SkeletonCards />
) : currentData.length !== 0 ? (
<div className="py-3">
<div className="py-3" id="step-3">
<div className="flex flex-col">
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-3">
{currentData.map((escrow, index) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const MyEscrowsFilter = () => {
className="mr-auto w-full md:w-auto"
label="Create Escrow"
url={"/dashboard/escrow/initialize-escrow"}
id="step-2"
/>
</div>

Expand Down
Loading

0 comments on commit 2723e2e

Please sign in to comment.