From 9bd05b8bda95a38c5560a067a6647dca76c98e76 Mon Sep 17 00:00:00 2001 From: amandaesmith333 Date: Mon, 24 Apr 2023 14:36:26 -0500 Subject: [PATCH 1/2] docs(your-first-app): mark webviewPath as optional in UserPhoto interface --- docs/angular/your-first-app/2-taking-photos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/angular/your-first-app/2-taking-photos.md b/docs/angular/your-first-app/2-taking-photos.md index 73b6d20533f..1a0cb3e2727 100644 --- a/docs/angular/your-first-app/2-taking-photos.md +++ b/docs/angular/your-first-app/2-taking-photos.md @@ -83,7 +83,7 @@ Outside of the `PhotoService` class definition (the very bottom of the file), cr ```tsx export interface UserPhoto { filepath: string; - webviewPath: string; + webviewPath?: string; } ``` From ff9b6fcc0c7a8929960c6b953f112b7add57058f Mon Sep 17 00:00:00 2001 From: amandaesmith333 Date: Mon, 24 Apr 2023 14:36:26 -0500 Subject: [PATCH 2/2] docs(your-first-app): mark webviewPath as optional in UserPhoto interface Co-authored-by: derf974 --- docs/angular/your-first-app/2-taking-photos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/angular/your-first-app/2-taking-photos.md b/docs/angular/your-first-app/2-taking-photos.md index 73b6d20533f..1a0cb3e2727 100644 --- a/docs/angular/your-first-app/2-taking-photos.md +++ b/docs/angular/your-first-app/2-taking-photos.md @@ -83,7 +83,7 @@ Outside of the `PhotoService` class definition (the very bottom of the file), cr ```tsx export interface UserPhoto { filepath: string; - webviewPath: string; + webviewPath?: string; } ```