Skip to content

Commit

Permalink
env
Browse files Browse the repository at this point in the history
  • Loading branch information
hardyjosh committed Nov 18, 2024
1 parent e71de23 commit ce911f8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/deploy-vercel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
env:
COMMIT_SHA: ${{ github.sha }}
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -12,7 +14,7 @@ jobs:

- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main

- run: nix develop -c rainix-sol-prelude
working-directory: lib/rain.interpreter
- run: nix develop -c rainix-rs-prelude
Expand Down Expand Up @@ -40,4 +42,4 @@ jobs:
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }} # Required
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }} # Required
vercel-args: --prebuilt # We want to skip the build step on Vercel, since we've already built our app in the previous step
working-directory: ./packages/webapp # Optional, use for monorepo
working-directory: ./packages/webapp # Optional, use for monorepo
23 changes: 17 additions & 6 deletions tauri-app/src/lib/components/tables/OrdersListTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,26 @@
TableHeadCell,
} from 'flowbite-svelte';
import { DotsVerticalOutline } from 'flowbite-svelte-icons';
import { walletAddressMatchesOrBlank } from '$lib/stores/wallets';
import { Hash, HashType } from '@rainlanguage/ui-components';
import { activeNetworkRef, activeOrderbookRef, activeSubgraphs } from '$lib/stores/settings';
import { formatTimestampSecondsAsLocal } from '$lib/utils/time';
import { handleOrderRemoveModal } from '$lib/services/modal';
import { activeAccounts, activeOrderStatus } from '$lib/stores/settings';
import { get } from 'svelte/store';
import { orderHash } from '$lib/stores/settings';
import type { Order as OrderDetailOrder } from '$lib/typeshare/subgraphTypes';
import type { Order as OrderListOrder } from '$lib/typeshare/subgraphTypes';
import { get, type Readable, type Writable } from 'svelte/store';
export let handleOrderRemoveModal: (
order: OrderDetailOrder | OrderListOrder,
onOrderRemoved: () => void,
) => void;
export let walletAddressMatchesOrBlank: Writable<(otherAddress: string) => boolean>;
export let activeAccounts: Readable<Record<string, string>>;
export let activeSubgraphs: Writable<Record<string, string>>;
export let activeNetworkRef: Writable<string>;
export let activeOrderbookRef: Writable<string>;
export let activeOrderStatus: Writable<boolean | undefined>;
export let orderHash: Writable<string>;
$: query = createInfiniteQuery({
queryKey: [QKEY_ORDERS, $activeAccounts, $activeOrderStatus, $orderHash, $activeSubgraphs],
Expand Down

0 comments on commit ce911f8

Please sign in to comment.