Skip to content

Commit aa801b4

Browse files
More capitalization fixes
1 parent c9ef73f commit aa801b4

18 files changed

Lines changed: 23 additions & 26 deletions

File tree

app/app.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ import {
1212
} from '@embroider/macros';
1313
import compatModules from '@embroider/virtual/compat-modules';
1414
import { init } from '@sentry/electron/renderer';
15-
16-
import config from 'swach/config/environment';
15+
import config from 'Swach/config/environment';
1716

1817
import './styles/all.css';
1918

app/config/environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { assert } from '@ember/debug';
22

33
import loadConfigFromMeta from '@embroider/config-meta-loader';
44

5-
const config = loadConfigFromMeta('swach') as unknown;
5+
const config = loadConfigFromMeta('Swach') as unknown;
66

77
assert(
88
'config is not an object',

app/controllers/welcome/auto-start.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Controller, { inject as controller } from '@ember/controller';
22

33
import { storageFor } from 'ember-local-storage';
44

5-
import 'swach/components/toggle-switch';
5+
import 'Swach/components/toggle-switch';
66

77
import type ApplicationController from '../../controllers/application.ts';
88
import type { SettingsStorage } from '../../storages/settings.ts';

app/data-sources/backup.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import type {
1010
RecordSchema,
1111
} from '@orbit/records';
1212
import { clone } from '@orbit/utils';
13-
14-
import ENV from 'swach/config/environment';
13+
import ENV from 'Swach/config/environment';
1514

1615
type PalettePOJO = Omit<Record, 'type'> & {
1716
type: 'palette';

app/data-sources/remote.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import {
1010
} from '@orbit/jsonapi';
1111
import { buildSerializerSettingsFor } from '@orbit/serializers';
1212
import { AwsClient } from 'aws4fetch';
13-
14-
import ENV from 'swach/config/environment';
13+
import ENV from 'Swach/config/environment';
1514

1615
export default {
1716
create(injections = {}) {

app/data-strategies/event-logging.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { EventLoggingStrategy } from '@orbit/coordinator';
2-
3-
import config from 'swach/config/environment';
2+
import config from 'Swach/config/environment';
43

54
const factory = {
65
create() {

app/router.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import EmberRouter from '@embroider/router';
2-
3-
import config from 'swach/config/environment';
2+
import config from 'Swach/config/environment';
43

54
export default class Router extends EmberRouter {
65
location = config.locationType;

app/routes/application.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This is a hack because ember-simple-auth exports an application.js and causes collisions
2-
export { default } from 'swach/routes/-private/application';
2+
export { default } from './-private/application.ts';

app/templates/welcome/dock-icon.gts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import svgJar from 'ember-svg-jar/helpers/svg-jar';
66
import not from 'ember-truth-helpers/helpers/not';
77

88
import ToggleSwitch from '../../components/toggle-switch.gts';
9-
import type WelcomeDockIconController from 'swach/controllers/welcome/dock-icon';
9+
import type WelcomeDockIconController from '../../controllers/welcome/dock-icon.ts';
1010

1111
export default <template>
1212
<div class="flex h-full items-center justify-center p-4 w-full">

app/utils/get-db-open-request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import ENV from 'swach/config/environment';
1+
import ENV from 'Swach/config/environment';
22

33
const { SCHEMA_VERSION } = ENV;
44

0 commit comments

Comments
 (0)