chore(release): prepare v0.17.2

This commit is contained in:
2026-06-28 23:03:18 -07:00
parent c942a2cf2d
commit 4b10e85053
9 changed files with 33 additions and 38 deletions
+4 -1
View File
@@ -2,7 +2,10 @@ export interface NoteFieldValueInfo {
fields: Record<string, { value: string }>;
}
export function getNoteFieldValue(noteInfo: NoteFieldValueInfo, preferredName: string): string | null {
export function getNoteFieldValue(
noteInfo: NoteFieldValueInfo,
preferredName: string,
): string | null {
const resolvedFieldName = Object.keys(noteInfo.fields).find(
(fieldName) => fieldName.toLowerCase() === preferredName.toLowerCase(),
);