Update util calls

This commit is contained in:
Matthew Esposito 2023-12-26 16:12:00 -05:00
parent 36357e2609
commit d9f7ebcb79
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
{% block title %}Libreddit Settings{% endblock %}
{% block search %}
{% call utils::search("".to_owned(), "", "") %}
{% call utils::search("".to_owned(), "") %}
{% endblock %}
{% block content %}

View File

@ -12,7 +12,7 @@
{% endblock %}
{% block subscriptions %}
{% call utils::sub_list(sub.name.as_str(), "wide") %}
{% call utils::sub_list(sub.name.as_str()) %}
{% endblock %}
{% block body %}

View File

@ -2,7 +2,7 @@
{% import "utils.html" as utils %}
{% block search %}
{% call utils::search("".to_owned(), "", "") %}
{% call utils::search("".to_owned(), "") %}
{% endblock %}
{% block title %}{{ user.name.replace("u/", "") }} (u/{{ user.name }}) - Libreddit{% endblock %}