diff --git a/project.task.yaml b/project.task.yaml
index 83529b982..9c5a5cf4a 100644
--- a/project.task.yaml
+++ b/project.task.yaml
@@ -1,12 +1,13 @@
tasks:
+- .5 audit all console.log calls
- 01 design ideas for simple gives on the Home page
- 01 add list of 'give' records for a project on ProjectView UI
-- 02 Discover page - display results (currently in console.log), spin when searching
+- 02 Discover page - display results (currently in console.log) & link, spin when searching
- 08 search by location, endpoint, etc assignee:trent
-- 01 add a location for a project via map pin :
- - give attribute to use assignee:trent
+- 01 add a location for a project via map pin (see API by clicking on "Nearby")
- 01 remove all the "form" fields (or at least investigate to see if that page refresh is desired)
+- .2 change "errorMessage" to "alertMessage" on ProjectViewView.vue
- 08 Scan QR code to import into contacts.
@@ -69,9 +70,10 @@ tasks:
- pull, w/ scheduled runs
- linking between projects or plans :
- - terminology:
- - for subtasks: fulfills (is it really the same?), feeds, contributes to, supplies, boosts, advances
- - for blocking: blocks, precedes, comes before, is sought by -- vs follows, seeks, builds on ("contributes to" isn't specific enough, "succeeds" has different, possibly confusing meaning)
+ - show total time given to & from a project
+ - terminology:
+ - for subtasks: fulfills (is it really the same?), feeds, contributes to, supplies, boosts, advances
+ - for blocking: blocks, precedes, comes before, is sought by -- vs follows, seeks, builds on ("contributes to" isn't specific enough, "succeeds" has different, possibly confusing meaning)
- Stats :
- 01 point out user's location on the world
diff --git a/src/main.ts b/src/main.ts
index 9238712d4..438d10ad6 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -19,6 +19,7 @@ import {
faCircleUser,
faClock,
faCoins,
+ faComment,
faCopy,
faEllipsisVertical,
faEye,
@@ -58,6 +59,7 @@ library.add(
faCircleUser,
faClock,
faCoins,
+ faComment,
faCopy,
faEllipsisVertical,
faEye,
diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue
index 25bd7ec44..dfdddafe7 100644
--- a/src/views/AccountViewView.vue
+++ b/src/views/AccountViewView.vue
@@ -284,6 +284,7 @@ import { useClipboard } from "@vueuse/core";
import { AppString } from "@/constants/app";
import { db, accountsDB } from "@/db";
+import { AccountsSchema } from "@/db/tables/accounts";
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
import { accessToken } from "@/libs/crypto";
import { AxiosError } from "axios/index";
diff --git a/src/views/ContactAmountsView.vue b/src/views/ContactAmountsView.vue
index 02a9e220a..e45ce8478 100644
--- a/src/views/ContactAmountsView.vue
+++ b/src/views/ContactAmountsView.vue
@@ -121,6 +121,7 @@ import * as R from "ramda";
import { Component, Vue } from "vue-facing-decorator";
import { accountsDB, db } from "@/db";
+import { AccountsSchema } from "@/db/tables/accounts";
import { Contact } from "@/db/tables/contacts";
import { MASTER_SETTINGS_KEY } from "@/db/tables/settings";
import { accessToken, SimpleSigner } from "@/libs/crypto";
diff --git a/src/views/DiscoverView.vue b/src/views/DiscoverView.vue
index b7606d44f..2bc861f68 100644
--- a/src/views/DiscoverView.vue
+++ b/src/views/DiscoverView.vue
@@ -58,7 +58,14 @@