diff --git a/src/components/help/ContactForm.tsx b/src/components/help/ContactForm.tsx
index fb86288..383e033 100644
--- a/src/components/help/ContactForm.tsx
+++ b/src/components/help/ContactForm.tsx
@@ -75,7 +75,7 @@ const ContactForm = ({ onBack }: ContactFormProps) => {
// Salvar contato no banco
const { error } = await supabase
- .from('contatos')
+ .from('contatos' as any)
.insert({
assunto: formData.assunto,
motivo: formData.motivo,
diff --git a/src/components/help/FAQList.tsx b/src/components/help/FAQList.tsx
index 7a2edd1..1605816 100644
--- a/src/components/help/FAQList.tsx
+++ b/src/components/help/FAQList.tsx
@@ -29,13 +29,13 @@ const FAQList = () => {
const loadFAQs = async () => {
try {
const { data, error } = await supabase
- .from('faqs')
+ .from('faqs' as any)
.select('*')
.eq('ativo', true)
.order('created_at', { ascending: false });
if (error) throw error;
- setFaqs(data || []);
+ setFaqs((data as FAQ[]) || []);
} catch (error) {
console.error('Erro ao carregar FAQs:', error);
toast({
@@ -61,7 +61,7 @@ const FAQList = () => {
const handleFeedback = async (faqId: string, helpful: boolean) => {
try {
const { error } = await supabase
- .from('faq_feedback')
+ .from('faq_feedback' as any)
.insert({
faq_id: faqId,
helpful: helpful,
diff --git a/src/components/help/HelpIcon.tsx b/src/components/help/HelpIcon.tsx
index d4772e8..7621fc9 100644
--- a/src/components/help/HelpIcon.tsx
+++ b/src/components/help/HelpIcon.tsx
@@ -20,10 +20,11 @@ const HelpIcon = () => {