Browse Source
fix: mergedAppConfig dependency exception (#43269)
Signed-off-by: Rainey <xuebing_orz@icloud.com>
pull/43289/head
Rainey
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
components/app/index.tsx
|
|
@ -42,7 +42,7 @@ const App: React.FC<AppProps> & { useApp: typeof useApp } = (props) => { |
|
|
|
message: { ...appConfig.message, ...message }, |
|
|
|
notification: { ...appConfig.notification, ...notification }, |
|
|
|
}), |
|
|
|
[message, notification, appConfig.message, appConfig.message], |
|
|
|
[message, notification, appConfig.message, appConfig.notification], |
|
|
|
); |
|
|
|
|
|
|
|
const [messageApi, messageContextHolder] = useMessage(mergedAppConfig.message); |
|
|
|