Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
fix(store): return template string
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexpeschel committed Dec 7, 2017
1 parent 9a96741 commit aed24f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/pattern/parser/typescript_parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class TypeScriptParser extends PatternParser {
}

protected getPropsTypeName(): string {
return this.typeName + 'Props';
return `${this.typeName} Props`;
}

public parse(pattern: Pattern): Property[] | undefined {
Expand Down

0 comments on commit aed24f1

Please sign in to comment.