ci: fix code checks

This commit is contained in:
kyranjamie
2021-10-05 15:28:21 +02:00
committed by kyranjamie
parent 91cf29e881
commit a3c59aac84
4 changed files with 3 additions and 6 deletions

View File

@@ -170,11 +170,8 @@ jobs:
with:
node-version: 14.x
- name: Install ajv-cli
runs: yarn global add ajv-cli
- name: Validate message schema
runs: ajv-cli validate -s scripts/wallet-comms.schema.json -d wallet-comms.json
run: npx ajv-cli validate -s config/wallet-comms.schema.json -d config/wallet-comms.json
build:
runs-on: ubuntu-latest

View File

@@ -25,7 +25,6 @@
},
"publishedAt": {
"type": "string",
"format": "date-time",
"description": "Estimate date time at which the message has been published"
},
"learnMoreUrl": {

View File

@@ -1,6 +1,6 @@
import React from 'react';
import { Outlet } from 'react-router-dom';
import { Box, Stack } from '@stacks/ui';
import { Stack } from '@stacks/ui';
import { PopupContainer } from '@components/popup/container';
import { Header } from '@components/header';
import { BalancesAndActivity } from '@features/balances-and-activity';

View File

@@ -77,6 +77,7 @@ const PostConditionsList = () => {
/>
);
}
return;
})}
</>
);