Skip to content

Commit cda92d8

Browse files
committed
fix typo bug
1 parent cddd33e commit cda92d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

serverless.component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: aws-dynamodb
2-
version: 1.0.0
2+
version: 1.0.1
33
author: ac360
44
org: serverlessinc
55
description: Provision an AWS DynamoDB Table

src/serverless.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class AwsDynamoDb extends Component {
7474
console.log(`Table ${config.name} already exists. Comparing config changes...`)
7575

7676
// Check region
77-
if (config.region && this.state.region && config.reion !== this.state.region) {
77+
if (config.region && this.state.region && config.region !== this.state.region) {
7878
throw new Error(
7979
'You cannot change the region of a DynamoDB Table. Please remove it and redeploy in your desired region.'
8080
)

0 commit comments

Comments
 (0)