fix(lint): Replace any type with proper Record type in IntlProvider

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Matthieu MALVACHE
2026-01-08 04:00:43 +01:00
co-authored by Claude Sonnet 4.5
parent a4e2fcf81b
commit 2f50feb6bb
+1 -1
View File
@@ -14,7 +14,7 @@ const ALL_MESSAGES = {
interface IntlProviderProps {
locale: string;
messages: any;
messages: Record<string, unknown>;
children: React.ReactNode;
}