Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Harlan T Wood committed May 13, 2023
1 parent f497be7 commit a89f4d7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dnas/mewsfeed/zomes/coordinator/mews/src/all_mews.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use crate::helpers::call_local_zome;
use crate::mew::get_mew_with_context;
use hdk::prelude::*;
use mews_integrity::*;
use trust_atom_types::{QueryMineInput, TrustAtom, TrustAtomInput};
use trust_atom_types::{QueryMineInput, TrustAtom};

#[hdk_extern]
pub fn get_all_mews(_: ()) -> ExternResult<Vec<Record>> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub fn add_hashtag_for_mew(input: AddHashtagForMewInput) -> ExternResult<()> {
path.path_entry_hash()?,
input.clone().target_mew_hash,
LinkTypes::HashtagToMews,
LinkTag(input.clone().base_hashtag.as_bytes().to_vec()),
LinkTag(input.base_hashtag.as_bytes().to_vec()),
)?;

add_hashtag_by_author_for_mew(input)?;
Expand Down
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@
"test:watch:pattern": "cargo watch --clear --ignore '{tests/**,ui/**}' -- npm run test:watch:pattern:metal",
"test:watch:pattern:metal": "npm run build:happ && npm run -w tests test:watch:pattern",
"start:happ:browser": "hc s clean && echo pass | RUST_LOG=warn hc s --piped -f=$HC_ADMIN_PORT generate ./workdir/mewsfeed.happ --run=$HC_PORT -a mewsfeed network mdns",
"test:sweet:watch": "cargo watch --clear -- npm run test:sweet:clear",
"test:sweet:clear": "clear && npm run test:sweet",
"test:sweet": "npm run build:happ && set -x && RUST_BACKTRACE=1 time cargo test -- --nocapture",
"package": "npm run build:happ && npm run package:ui && hc web-app pack workdir",
"package:ui": "npm run build -w ui && cd ui/dist && bestzip ../dist.zip *",
"build:happ": "rm -f dnas/**/workdir/*.dna && npm run build:dnas && hc app pack ./workdir",
Expand Down

0 comments on commit a89f4d7

Please sign in to comment.