Skip to content

Commit

Permalink
Merge pull request #121 from pacholoamit/feat/remove-user-registration
Browse files Browse the repository at this point in the history
feat/remove user registration
  • Loading branch information
pacholoamit authored May 15, 2024
2 parents 69786c3 + d4eccf2 commit d46cb25
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 160 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/).

## 0.7.0-rc
- Improve Settings page UI
- Add Theme support
- Add Slate theme
- Add Midnight theme
- Add Bumblebee theme
- Remove User email prompt

## 0.6.0
- Modify UI to use stats-rings
- Add Analytics provider
Expand Down
17 changes: 0 additions & 17 deletions src/api/client.ts

This file was deleted.

2 changes: 0 additions & 2 deletions src/api/index.ts

This file was deleted.

11 changes: 0 additions & 11 deletions src/api/types.ts

This file was deleted.

1 change: 1 addition & 0 deletions src/lib/store.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Store } from "tauri-plugin-store";

// Currently not being used, implement on PostHog maybe?
const userId = (store: Store) => {
return {
get: async () => await store.get<string>("userId"),
Expand Down
7 changes: 2 additions & 5 deletions src/providers/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import UserProvider from "@/providers/user.provider";
import ThemeProvider from "@/providers/theme.provider";
import ServerEventsProvider from "@/providers/server-events.provider";
import AnalyticsProvider from "@/providers/analytics.provider";
Expand All @@ -15,10 +14,8 @@ const AppProvider: React.FC<AppProvider> = ({ children }) => {
<AnalyticsProvider>
<ThemeProvider>
<ServerEventsProvider>
<UserProvider>
<Notifications />
{children}
</UserProvider>
<Notifications />
{children}
</ServerEventsProvider>
</ThemeProvider>
</AnalyticsProvider>
Expand Down
125 changes: 0 additions & 125 deletions src/providers/user.provider.tsx

This file was deleted.

0 comments on commit d46cb25

Please sign in to comment.