Skip to content

Commit

Permalink
EOF
Browse files Browse the repository at this point in the history
  • Loading branch information
btkcodedev committed Jan 10, 2025
1 parent e52ff6e commit 48b4b48
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ AIRBYTE_LOCAL_PROXY_URL = "/api/airbyte";
AIRBYTE_API_BASE_URL = "https://api.airbyte.com/v1";
GROQ_SUPABASE_PROXY_URL = "https://xxxxxxx/functions/v1/xxxxx/groq";
GROQ_LOCAL_PROXY_URL = "/api/groq";
GROQ_API_BASE_URL = "https://api.groq.com/v1";
GROQ_API_BASE_URL = "https://api.groq.com/v1";
2 changes: 1 addition & 1 deletion src/components/welcome/HeroContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ export default function HeroContent() {
</motion.p>
</div>
);
}
}
2 changes: 1 addition & 1 deletion src/components/welcome/WelcomeBackground.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ export default function WelcomeBackground() {
<div className="absolute inset-0 bg-[url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&q=80')] opacity-[0.02] bg-cover bg-center" />
</div>
);
}
}
2 changes: 1 addition & 1 deletion src/lib/motherduck/connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { getMotherDuckConfig } from './config';

let connection: ReturnType<typeof MDConnection.create> | null = null;

// Initializes the connection to MotherDuck immidiately
// Initializes the connection to MotherDuck immediately
// Useful for performing connection checks

export const getConnection = async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/motherduck/queries.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { fetchAnalytics } from './queries/analytics';
export { fetchAnalytics } from './queries/analytics';
2 changes: 1 addition & 1 deletion src/lib/motherduck/queries/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ export async function fetchAnalytics(
} catch (error) {
throw error;
}
}
}
3 changes: 2 additions & 1 deletion src/lib/motherduck/queries/sentimentInsights.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,5 @@ export async function fetchSentimentInsights(
} catch (error) {
return [];
}
}
}

1 change: 1 addition & 0 deletions src/lib/motherduck/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ export interface Dataset {
database: string;
tableName: string;
}

2 changes: 1 addition & 1 deletion src/types/analytics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ export interface Analytics {
textAnalysis: TextAnalysis;
}

export type LoadingStageId = (typeof LOADING_STAGES)[keyof typeof LOADING_STAGES];
export type LoadingStageId = (typeof LOADING_STAGES)[keyof typeof LOADING_STAGES];

0 comments on commit 48b4b48

Please sign in to comment.