Merge branch 'build-improvement' of ssh://173.199.124.46:222/trent_larson/crowd-funder-for-time-pwa into build-improvement

This commit is contained in:
Matthew Raymer
2025-07-30 04:32:45 +00:00
5 changed files with 7 additions and 3 deletions

View File

@@ -180,7 +180,7 @@
> >
Let's go! Let's go!
<br /> <br />
See & record gratitude. See & record things you've received.
</button> </button>
<button <button
type="button" type="button"

View File

@@ -67,7 +67,7 @@
out of <b>{{ imageLimits?.maxImagesPerWeek ?? "?" }}</b> for this week. out of <b>{{ imageLimits?.maxImagesPerWeek ?? "?" }}</b> for this week.
Your image counter resets at Your image counter resets at
<b class="whitespace-nowrap">{{ <b class="whitespace-nowrap">{{
readableDate(imageLimits?.nextWeekBeginDateTime || "") readableDate(imageLimits?.nextWeekBeginDateTime)
}}</b> }}</b>
</p> </p>
</div> </div>

View File

@@ -6,7 +6,9 @@ export type ContactMethod = {
export type Contact = { export type Contact = {
// //
// When adding a property, consider whether it should be added when exporting & sharing contacts, eg. DataExportSection // When adding a property:
// - Consider whether it should be added when exporting & sharing contacts, eg. DataExportSection
// - If it's a boolean, it should be converted from a 0/1 integer in PlatformServiceMixin._mapColumnsToValues
did: string; did: string;
contactMethods?: Array<ContactMethod>; contactMethods?: Array<ContactMethod>;

View File

@@ -34,6 +34,7 @@ import { PlatformServiceFactory } from "../services/PlatformServiceFactory";
import { IIdentifier } from "@veramo/core"; import { IIdentifier } from "@veramo/core";
import { DEFAULT_ROOT_DERIVATION_PATH } from "./crypto"; import { DEFAULT_ROOT_DERIVATION_PATH } from "./crypto";
// Consolidate this with src/utils/PlatformServiceMixin._parseJsonField
function parseJsonField<T>(value: unknown, defaultValue: T): T { function parseJsonField<T>(value: unknown, defaultValue: T): T {
if (typeof value === "string") { if (typeof value === "string") {
try { try {

View File

@@ -314,6 +314,7 @@ import {
} from "@/constants/notifications"; } from "@/constants/notifications";
import * as Package from "../../package.json"; import * as Package from "../../package.json";
// consolidate this with GiveActionClaim in src/interfaces/claims.ts
interface Claim { interface Claim {
claim?: Claim; // For nested claims in Verifiable Credentials claim?: Claim; // For nested claims in Verifiable Credentials
agent?: { agent?: {