From 030b0b3e94c41b8a0150a5fb17d5b76df2dc8564 Mon Sep 17 00:00:00 2001 From: Chris Rybicki Date: Thu, 8 Feb 2024 11:10:37 -0500 Subject: [PATCH] update comment --- dynamodb.w | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dynamodb.w b/dynamodb.w index 57f777a..5e2af69 100644 --- a/dynamodb.w +++ b/dynamodb.w @@ -168,8 +168,11 @@ pub class DynamoDBTableAws { } pub class DynamoDBTable { - tableSim: DynamoDBTableSim; // TODO: this is actually optional - tableAws: DynamoDBTableAws; // TODO: this is actually optional + // TODO: these fields are actually optional. workaround for: + // https://github.com/winglang/wing/issues/5636 + // https://github.com/winglang/wing/issues/5647 + tableSim: DynamoDBTableSim; + tableAws: DynamoDBTableAws; new(props: DynamoDBTableProps) { let target = util.env("WING_TARGET");