Skip to content

Commit

Permalink
fix: incorrect comment position (#2076)
Browse files Browse the repository at this point in the history
property should be after comment to recognize correctly.

NO CHANGE FOR FUNCTIONALITY
  • Loading branch information
ken0x0a authored and dotansimha committed Jul 3, 2019
1 parent 3af668a commit 9212d8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/plugins/typescript/react-apollo/src/index.ts
Expand Up @@ -101,13 +101,13 @@ export interface ReactApolloRawPluginConfig extends RawClientSideBasePluginConfi
* @default react-apollo
*/
reactApolloImportFrom?: string;
componentSuffix?: string;
/**
* @name componentSuffix
* @type string
* @description You can specify a suffix that gets attached to the name of the generated component.
* @default Component
*/
componentSuffix?: string;
}

export const plugin: PluginFunction<ReactApolloRawPluginConfig> = (schema: GraphQLSchema, documents: Types.DocumentFile[], config: ReactApolloRawPluginConfig) => {
Expand Down

0 comments on commit 9212d8a

Please sign in to comment.