From 9212d8af26a368e37f48abd36125401c4fa0b396 Mon Sep 17 00:00:00 2001 From: Ken <2770219+ken0x0a@users.noreply.github.com> Date: Wed, 3 Jul 2019 15:17:20 +0900 Subject: [PATCH] fix: incorrect comment position (#2076) property should be after comment to recognize correctly. NO CHANGE FOR FUNCTIONALITY --- packages/plugins/typescript/react-apollo/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugins/typescript/react-apollo/src/index.ts b/packages/plugins/typescript/react-apollo/src/index.ts index 19dce9c2de5..faa9e4f0648 100644 --- a/packages/plugins/typescript/react-apollo/src/index.ts +++ b/packages/plugins/typescript/react-apollo/src/index.ts @@ -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 = (schema: GraphQLSchema, documents: Types.DocumentFile[], config: ReactApolloRawPluginConfig) => {