Skip to content

Commit 41cd636

Browse files
committed
doesnt need to be a .svelte.js anymore
1 parent f833a6c commit 41cd636

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

packages/kit/src/runtime/app/server/remote/form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
deep_set,
1212
normalize_issue,
1313
flatten_issues
14-
} from '../../../form-utils.svelte.js';
14+
} from '../../../form-utils.js';
1515
import { get_cache, run_remote_function } from './shared.js';
1616

1717
/**

packages/kit/src/runtime/client/remote-functions/form.svelte.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
throw_on_old_property_access,
2020
build_path_string,
2121
normalize_issue
22-
} from '../../form-utils.svelte.js';
22+
} from '../../form-utils.js';
2323

2424
/**
2525
* Merge client issues into server issues. Server issues are persisted unless

packages/kit/src/runtime/form-utils.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, expect, test } from 'vitest';
2-
import { convert_formdata, split_path } from './form-utils.svelte.js';
2+
import { convert_formdata, split_path } from './form-utils.js';
33

44
describe('split_path', () => {
55
const good = [

0 commit comments

Comments
 (0)