Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prod release test #106

Closed
wants to merge 11 commits into from
Closed
9 changes: 5 additions & 4 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
"lint": "next lint"
},
"dependencies": {
"@graphiql/plugin-explorer": "^0.1.20",
"@graphiql/plugin-code-exporter": "^0.1.2",
"@monaco-editor/react": "^4.1.3",
"@near-lake/primitives": "0.1.0",
"@next/font": "13.1.6",
Expand All @@ -33,9 +35,8 @@
"typescript": "4.9.5",
"graphiql": "^2.4.1",
"react-bootstrap-icons": "^1.10.3",
"buffer": "^6.0.3"
},
"devDependencies": {
"raw-loader": "^4.0.2"
"buffer": "^6.0.3",
"raw-loader": "^4.0.2",
"regenerator-runtime": "^0.13.11"
}
}
4 changes: 1 addition & 3 deletions frontend/src/components/CreateNewIndexer/CreateNewIndexer.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import Editor from '../../components/Editor';

const CreateNewIndexer = (props) => {
const CreateNewIndexer = () => {
return (
<Editor
accountId={props.accountId}
options={{ create_new_indexer: true }}
actionButtonText="Create New Indexer"
theme="vs-dark"
/>);
Expand Down
1 change: 0 additions & 1 deletion frontend/src/components/Editor/BlockPicker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {
OverlayTrigger,
Tooltip,
Button,
Badge,
InputGroup,
FormControl,
Dropdown,
Expand Down
Loading