Skip to content

Commit 2baa671

Browse files
authored
fix(typesync): remove url type from typesync studio TypeSelect (#515)
1 parent 95296cc commit 2baa671

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.changeset/poor-moons-hunt.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@graphprotocol/hypergraph": patch
3+
---
4+
5+
Removed Url from the TypeSelect in typesync-studio
6+

packages/hypergraph/src/cli/Cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ const hypergraph = Command.make('hypergraph').pipe(
1111

1212
export const run = Command.run(hypergraph, {
1313
name: 'hypergraph',
14-
version: '0.6.0',
14+
version: '0.6.2',
1515
});

packages/typesync-studio/src/Components/Schema/TypeSelect.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ const typeOptions: ReadonlyArray<TypeOption> = [
2121
TypeOption.make({ id: 'DefaultEntityNumber', name: 'Number' }),
2222
TypeOption.make({ id: 'DefaultEntityBoolean', name: 'Boolean' }),
2323
TypeOption.make({ id: 'DefaultEntityDate', name: 'Date' }),
24-
TypeOption.make({ id: 'DefaultEntityUrl', name: 'Url' }),
2524
TypeOption.make({ id: 'DefaultEntityPoint', name: 'Point' }),
2625
];
2726

0 commit comments

Comments
 (0)