Skip to content

Commit 15359f9

Browse files
committed
Adjust function
1 parent cff8f68 commit 15359f9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/cdkConstructs/src/constructs/RestApiGateway.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ export interface RestApiGatewayProps {
5858
readonly enableServiceDomain?: boolean
5959
}
6060

61-
const function getTrustStoreKeyPrefix(stackName: string, stackUUID?: string) {
61+
const getTrustStoreKeyPrefix = (stackName: string, stackUUID?: string) => {
6262
if (stackUUID) {
6363
return `cpt-api/${stackName}-${stackUUID}-truststore`
6464
} else {
65-
return `cpt-api/${props.stackName}-truststore`
65+
return `cpt-api/${stackName}-truststore`
6666
}
6767
}
6868

0 commit comments

Comments
 (0)