Skip to content

Commit 7352b62

Browse files
committed
fix: lint
1 parent 663153e commit 7352b62

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

coderd/database/dbfake/dbfake.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ func (q *FakeQuerier) GetAppSecurityKey(_ context.Context) (string, error) {
11291129
return q.appSecurityKey, nil
11301130
}
11311131

1132-
func (q *FakeQuerier) GetApplicationName(ctx context.Context) (string, error) {
1132+
func (q *FakeQuerier) GetApplicationName(_ context.Context) (string, error) {
11331133
q.mutex.RLock()
11341134
defer q.mutex.RUnlock()
11351135

site/src/api/api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,7 @@ export const getAppearance = async (): Promise<TypesGen.AppearanceConfig> => {
10881088
} catch (ex) {
10891089
if (axios.isAxiosError(ex) && ex.response?.status === 404) {
10901090
return {
1091+
application_name: "",
10911092
logo_url: "",
10921093
service_banner: {
10931094
enabled: false,

site/src/pages/DeploySettingsPage/AppearanceSettingsPage/AppearanceSettingsPageView.stories.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const meta: Meta<typeof AppearanceSettingsPageView> = {
66
component: AppearanceSettingsPageView,
77
args: {
88
appearance: {
9+
application_name: "",
910
logo_url: "https://github.com/coder.png",
1011
service_banner: {
1112
enabled: true,

0 commit comments

Comments
 (0)