Skip to content

Commit

Permalink
internal: Disable all Vercel deployment - relying on github action only
Browse files Browse the repository at this point in the history
  • Loading branch information
ntucker committed Jan 19, 2024
1 parent 68223c4 commit ee85e04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/coin-app/src/pages/Home/AssetPrice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function AssetPrice({ product_id }: Props) {
useSubscription(getTicker, { product_id });
const ticker = useCache(getTicker, { product_id });
const stats = useCache(StatsResource.get, { id: product_id });
// fallback to stats, as we can load those in a bulk fetch
// fallback to stats, as we can load those in a bulk fetch for SSR
const price = ticker?.price ?? stats?.last;
if (!price) return <span></span>;
return <span>{formatPrice.format(price)}</span>;
Expand Down
4 changes: 1 addition & 3 deletions website/vercel.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"cleanUrls": true,
"git": {
"deploymentEnabled": {
"master": false
}
"deploymentEnabled": false
}
}

0 comments on commit ee85e04

Please sign in to comment.