Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Megha-Dev-19 committed Jan 5, 2025
1 parent f0e97c8 commit 38fd15e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const AppHeader = ({ page, instance }) => (
/>
);

function AppLayout({ page, instance, children, treasuryDaoID }) {
function AppLayout({ page, instance, children, treasuryDaoID, accountId }) {
const config = treasuryDaoID
? useCache(
() => Near.asyncView(treasuryDaoID, "get_config"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ test.describe("User is logged in", function () {
instanceAccount,
}) => {
test.setTimeout(60_000);
await updateDaoPolicyMembers({ page });
await mockNearBalances({
page,
accountId: signedUser,
Expand Down
6 changes: 5 additions & 1 deletion playwright-tests/tests/settings/theme.spec.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { expect } from "@playwright/test";
import { test } from "../../util/test.js";
import { getTransactionModalObject } from "../../util/transaction.js";
import { mockRpcRequest, updateDaoPolicyMembers, mockNearBalances } from "../../util/rpcmock.js";
import {
mockRpcRequest,
updateDaoPolicyMembers,
mockNearBalances,
} from "../../util/rpcmock.js";
import path from "path";
import { fileURLToPath } from "url";
import { InsufficientBalance } from "../../util/lib.js";
Expand Down

0 comments on commit 38fd15e

Please sign in to comment.