Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mrf7777 committed Jan 30, 2024
1 parent fc28676 commit 3f1b516
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion furfolio/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
# dashboards
path('dashboard/', dashboards.CreatorDashboard.as_view(),
name="dashboard"),
path('dashboard/commissions/', dashboards.CreatorDashboardCommissionsComponenet.as_view(), name="dashboard_commissions_component"),
path('dashboard/commissions/', dashboards.CreatorDashboardCommissionsComponent.as_view(), name="dashboard_commissions_component"),
# commissions
path(
'commissions/<pk>',
Expand Down
2 changes: 1 addition & 1 deletion furfolio/views/dashboards.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def get_context_data(self, **kwargs: Any) -> dict[str, Any]:
return context


class CreatorDashboardCommissionsComponenet(LoginRequiredMixin, generic.TemplateView):
class CreatorDashboardCommissionsComponent(LoginRequiredMixin, generic.TemplateView):
template_name = "furfolio/dashboards/commissions_component.html"

def get_context_data(self, **kwargs: Any) -> dict[str, Any]:
Expand Down

0 comments on commit 3f1b516

Please sign in to comment.