Skip to content

Commit

Permalink
fix(weavedrive): rearrange tags in graphql query to be most -> least …
Browse files Browse the repository at this point in the history
…specific
  • Loading branch information
TillaTheHun0 committed Nov 6, 2024
1 parent 95fe14f commit a0c9dbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/weavedrive/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -488,9 +488,9 @@ module.exports = function weaveDrive(mod, FS) {
owners: ${attestors},
block: {min: 0, max: ${blockHeight}},
tags: [
{ name: "Data-Protocol", values: ["ao"] },
{ name: "Type", values: ["Attestation"] },
{ name: "Message", values: ["${ID}"]}
{ name: "Data-Protocol", values: ["ao"] },
]
)
{
Expand All @@ -516,9 +516,9 @@ module.exports = function weaveDrive(mod, FS) {
owners: ${attestors},
block: {min: 0, max: ${blockHeight}},
tags: [
{ name: "Data-Protocol", values: ["WeaveDrive"] },
{ name: "Type", values: ["Available"]},
{ name: "ID", values: ["${ID}"]}
{ name: "Data-Protocol", values: ["WeaveDrive"] },
]
)
{
Expand Down

0 comments on commit a0c9dbc

Please sign in to comment.