Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeesun Kim authored and Jeesun Kim committed Apr 12, 2024
1 parent 022bfd2 commit 8f444d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/app/(sidebar)/endpoints/[[...pages]]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ export default function Endpoints() {
.find((page) => pathname.includes(page.route))
?.nestedItems?.find((i) => i.route === pathname);

console.log("page: ", page);

const pageData = page?.form;
const requiredFields = sanitizeArray(
pageData?.requiredParams?.split(",") || [],
Expand Down
3 changes: 2 additions & 1 deletion src/app/(sidebar)/transaction/sign/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ export default function SignTransaction() {
setIsTxImported(true);
setTx(transaction);
} catch (e) {
console.log("e:", e);
setIsTxImported(false);
setTxErrMsg("Unable to parse input XDR into Transaction Envelope");
}
};

Expand Down

0 comments on commit 8f444d9

Please sign in to comment.